题目描述
正数
样例
#include <iostream>
using namespace std;
int main()
{
int x = 0;
for(int i = 1;i <= 6;i++)
{
double t;
scanf("%lf",&t);
if(t > 0)
x++;
}
printf("%d positive numbers\n",x);
return 0;
}