新手上路,求指导
输入10个数 求大于零,小于零和大于零各有几个数?因为补修,同学都忘记了。。。。
#include<stdio.h>
main()
{
int m=0,n=0;
int c;
while(1)
{
scanf("%d",&c);
if(c==0)
break;
else if(c<0)
m+=1;
else if(c>0)
n+=1;
}
printf("小于0的数个数为:%d\n",m);
printf("大于0的数个数为:%d",n);
}
他们给我查了这方法做。。。
具体怎么写?