URI 1066 Solve

Solve of URI 1066 (Even, Odd, Positive And Negative) in C

#include<stdio.h>
int main(void){
    int i,n,even=0,odd=0,positive=0,negative=0;
    for(i=1;i<=5;i++){
        scanf("%d",&n);
        if(n%2==0)
            even++;
        else
            odd++;
        if(n>0)
            positive++;
        else if(n<0 data-blogger-escaped-br="">             negative++;
    }
    printf("%d valor(es) par(es)\n",even);
    printf("%d valor(es) impar(es)\n",odd);
    printf("%d valor(es) positivo(s)\n",positive);
    printf("%d valor(es) negativo(s)\n",negative);
    return 0;
}

Post a Comment

Previous Post Next Post