HDOJ 字串統計

2021-10-14 02:39:30 字數 459 閱讀 9735

problem description

對於給定的乙個字串,統計其中數字字元出現的次數。

input

輸入資料有多行,第一行是乙個整數n,表示測試例項的個數,後面跟著n行,每行包括乙個由字母和數字組成的字串。

output

對於每個測試例項,輸出該串中數值的個數,每個輸出佔一行。

sample input

2asdfasdf123123asdfasdf

asdf111111111asdfasdfasdf

sample output69

//就是乙個簡單的輸入輸出問題;

#include

#include

intmain()

printf

("%d\n"

,count);}

return0;

}

hdoj 2017 字串統計 字串

對於給定的乙個字串,統計其中數字字元出現的次數。輸入資料有多行,第一行是乙個整數n,表示測試例項的個數,後面跟著n行,每行包括乙個由字母和數字組成的字串。對於每個測試例項,輸出該串中數值的個數,每個輸出佔一行。2 asdfasdf123123asdfasdf asdf111111111asdfasd...

hdoj 2030 漢字統計 字串 水

題目詳見 統計給定文字檔案中漢字的個數。input 輸入檔案首先包含乙個整數n,表示測試例項的個數,然後是n段文字。對於每一段文字,輸出其中的漢字的個數,每個測試例項的輸出佔一行。hint 從漢字機內碼的特點考慮 2 wahaha wahaha 今年過節不說話要說只說普通話wahaha wahaha...

統計字串

題目 計算字串中字母 數字 其他字元的個數。datas segment buf db 80 len db string db 80 dup 32 crlf db 13,10,displ db the amount of letters is 13,10,dispd db the amount of ...