hdu 2030 漢字統計

2021-08-21 19:36:57 字數 861 閱讀 4840

problem description

統計給定文字檔案中漢字的個數。

input

輸入檔案首先包含乙個整數n,表示測試例項的個數,然後是n段文字。

output

對於每一段文字,輸出其中的漢字的個數,每個測試例項的輸出佔一行。

[hint:]從漢字機內碼的特點考慮~

sample input

wahaha! wahaha! 今年過節不說話要說只說普通話wahaha! wahaha!

馬上就要期末考試了are you ready?

sample output

問題鏈結

問題分析: 

源**

#include #include #include #include #include #include #include #include #include #include #include using namespace std;

int main()

printf("%d\n", cnt/2); //乙個漢字佔兩個位元組,所以最後要除以2

}return 0;

}

HDU 2030 漢字統計

description 統計給定文字檔案中漢字的個數。input 輸入檔案首先包含乙個整數n,表示測試例項的個數,然後是n段文字。output 對於每一段文字,輸出其中的漢字的個數,每個測試例項的輸出佔一行。hint 從漢字機內碼的特點考慮 sample input 2 wahaha wahaha ...

HDU 2030漢字統計

機內碼 為了避免ascii碼和國標碼同時使用時產生二義性問題,大部分漢字系統都採用將國標碼每個位元組高位置1作為漢字機內碼。也就是說,乙個漢字字元由兩個位元組組成,而且這兩個位元組的最高位一定是1.那麼輸入的時候只getchar 這樣只能一半一半的輸入,也就是乙個漢字分兩次輸入。而每次輸入的值的首位...

HDU 2030 漢字統計

problem description 統計給定文字檔案中漢字的個數。input 輸入檔案首先包含乙個整數n,表示測試例項的個數,然後是n段文字。output 對於每一段文字,輸出其中的漢字的個數,每個測試例項的輸出佔一行。hint 從漢字機內碼的特點考慮 sample input 2wahaha ...