4.
#include
int main(void)
{
int i;
int num[10];
int countPost=0,countNeg=0,countZero=0;
printf("input first number:");
for(i=0;i<10;i++)
{
scanf("%d",&num[i]);
if(num[i]<0)
countNeg++;
else if(num[i]>0)
countPost++;
else
countZero++;
printf("input the next number:");
}
printf("the number of postive number is:%d\n",countPost);
printf("the number of negtive number is:%d\n",countNeg);
printf("the number of zero is :%d\n",countZero);
}
1 。 y=6
2 。 24
3 。 编程就先放下了 太长了
...
10 。 46
11 。 3