C语言输入10个整数,统计其中正数、负数和零的个数,并在屏幕上输出
程序员文章站
2022-03-10 08:40:30
...
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a=0,b=0,c=0;
int i,num;
for(i=0;i<10;i++){
scanf("%d",&num);
if(num>0)
a++;
if(num == 0)
b++;
if(num<0)
c++;
}
printf("整数的个数:%d\n0的个数:%d\n负数的个数:%d\n",a,b,c);
system("pause");
return 0;
}