题目描述
可以用数组解,这里用最简单的一个一个判断
样例
#include<cstdio>
using namespace std;
int main()
{
double a,b,c,d,e,f;
int count=0;
scanf("%lf\n%lf\n%lf\n%lf\n%lf\n%lf",&a,&b,&c,&d,&e,&f);
if(a>0)count++;
if(b>0)count++;
if(c>0)count++;
if(d>0)count++;
if(e>0)count++;
if(f>0)count++;
printf("%d positive numbers",count);
return 0;
}