编写一个程序 输入整数 直到输入0 计算偶数的个数 奇数的个数 和偶数的平均值 与奇数的平均值

#include "stdafx.h"
#include "stdlib.h"
 
int main()  
{  
    int ave,ou=0,ji=0,sum=0,max=0;
 
    printf("Please input a int:\n");
    while(scanf("%d",&ave))
    {
        if(ave==0)
            break;
        if(ave%2==0)
            {
                ou++;
                sum+=ave;
            }
        else
            {   
                ji++;
                max+=ave;
            }
        printf("Please input a int:\n");
 
    }
 
    printf("The oushu is %d ge pj is %d\nThe jishu is %d ge pj is %d\n",ou,sum/ou,ji,max/ji);
 
    system("pause");
    return 0;
}

你可能感兴趣的:(System,input,include)