Wednesday, June 15, 2016

SOLUTION OF URI 1066


//  1066  (Mahmud_Jamil) BRUR
//    question of  1066 Even, Odd, Positive and N...



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


0 comments:

Post a Comment