(HDOJ 2030)漢字統計

2022-02-08 08:09:31 字數 739 閱讀 9521

漢字統計

problem description

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

input

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

output

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

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

sample input

2 wahaha! wahaha! 今年過節不說話要說只說普通話wahaha! wahaha! 馬上就要期末考試了are you ready?

sample output

14 9

ac code:

#include

<

stdio.h

>

#include

<

math.h

>

#include

<

ctype.h

>

#include

<

string

.h>

#include

<

stdlib.h

>

#define

n 10000

intmain()

}printf(

"%d\n

",count/2

);memset(s,0,

sizeof

(s));

}

hdoj2030 漢字統計

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

HDOJ 2030 漢字統計

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

(HDOJ 2030)漢字統計

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