1. 程式人生 > >hdu_problem_2008_數值統計

hdu_problem_2008_數值統計

/*
*
*Problem Description
*統計給定的n個數中,負數、零和正數的個數。
*
*
*Input
*輸入資料有多組,每組佔一行,每行的第一個數是整數n(n<100),表示需要統計的數值的個數,然後是n個實數;如果n=0,則表示輸入結束,該行不做處理。
*
*
*Output
*對於每組輸入資料,輸出一行a,b和c,分別表示給定的資料中負數、零和正數的個數。
*
*
*Sample Input
*6 0 1 2 3 -1 0
*5 1 2 3 4 0.5
*0
*
*
*Sample Output
*1 2 3
*0 0 5
*
*
*Author
*lcy
*
*
*Source
*C語言程式設計練習(二)
*
*
*Recommend
*JGShining
*
*/
#include<iostream> using namespace std; int main() { int n, num_zero, num_positive, num_negative; double x; while (cin >> n) { if (n == 0)break; num_zero = 0, num_positive = 0, num_negative = 0; for (int i = 0; i < n; i++) { cin >> x; if (x > 0) num_positive++; else
if (x == 0) num_zero++; else num_negative++; } printf("%d %d %d\n", num_negative, num_zero, num_positive); } system("pause"); return 0; }