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

输入n个整数,分别统计输出正数、负数的个数。

程序员文章站 2022-03-10 08:22:12
...
#include <stdio.h>
int main(){
    int n;
    int count1=0;
    int count2=0;
    while(scanf("%d",&n)!=EOF){
        if(n>0){
            count1++;
        }
        else{
            count2++;
        }
    }
    printf("positive:%d\n",count1);
    printf("negative:%d",count2);
    return 0;
}

 

推荐阅读