标签:思路 oat == out 整数 正数 数组 std lib
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,c,n,i;
float x[1001]={0};
while(~scanf("%d",&n))
{
while(n==0)
goto loop;
a=0,b=0,c=0;
for(i=0;i<n;i++)
{
scanf("%f",&x[i]);
{if(x[i]<0)
a=a+1;
if(x[i]==0)
b=b+1;
if(x[i]>0)
c=c+1;}
}
printf("%d %d %d\n",a,b,c);
}
loop: return 0;
}
标签:思路 oat == out 整数 正数 数组 std lib
原文地址:https://www.cnblogs.com/zhs314159/p/10349458.html