杭電2008 數值統計

2021-06-06 06:10:51 字數 504 閱讀 7057

邊輸邊統計即可!!

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

**:#include

using namespace std;

int main()

cout<}return 0;

}

杭電OJ 2008 數值統計

problem description 統計給定的n個數中,負數 零和正數的個數。input 輸入資料有多組,每組佔一行,每行的第乙個數是整數n n 100 表示需要統計的數值的個數,然後是n個實數 如果n 0,則表示輸入結束,該行不做處理。output 對於每組輸入資料,輸出一行a,b和c,分別表...

杭電2027 統計母音

絕對的水題,只要注意輸出最後一組案例後沒有空行!problem description 統計每個母音字母在字串中出現的次數。input 輸入資料首先包括乙個整數n,表示測試例項的個數,然後是n行長度不超過100的字串。output 對於每個測試例項輸出5行,格式如下 a num1 e num2 i ...

統計母音(杭電2027)

include main int n,i,j,c 26 char a 5 b 100 定義 a字串,a,e,i,o,u while scanf d n eof getchar while n gets b for i 0 b i i for j 0 j 5 j if a j b i 判斷 b中的字元...