欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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;
}

相关标签: c语言