第十三周專案5 1 3 字元統計

2021-06-27 06:15:34 字數 640 閱讀 8671

問題及**:

/*

*檔名稱:test.cpp

*作 者:陳文青

*完成日期:2023年11月25日

*版 本 號:v1.0

**問題描述:統計每乙個數字字元出現的次數

*程式輸入:乙個字串

*程式輸出:字串中每乙個數字字元出現的次數

*/#include#include//包頭檔案

using namespace std;

int main()

; //num[10]陣列中所有數初值為0

cout<

gets(str);

while(str[i]!='\0')

for(i=0; i<10; i++)

cout<

知識點總結:

統計每乙個數字字元出現的次數;

定義乙個陣列int a[10],儲存』0』-』9』在字串中出現的次數

學習心得:

重點是這句

num[str[i]-'0']++;

,在別人告訴我這句**的時候!感覺超讚的!!直接省掉我乙個switch語句!!在以後攻城的路上,還要多請教大神!

第十三周專案5 字串操作 字元統計

include includeusing namespace std int main cout 統計字母 a 出現的次數 all gight reserved.檔名稱 temp.cpp 版本號 v1.0 統計字串中 大 小寫 字母個數 all gight reserved.檔名稱 temp.cpp...

第十三周專案5 2 2 字串複製

問題及 檔名稱 test.cpp 作 者 陳文青 完成日期 2014年11月25日 版 本 號 v1.0 問題描述 完成類似字串複製的功能,將str1和str2接起來存放到str3中 程式輸入 程式輸出 將str1和str2接起來存放到str3中 includeusing namespace std...

第十三周專案5 2 3 字串複製

問題及 檔名稱 test.cpp 作 者 陳文青 完成日期 2014年11月25日 版 本 號 v1.0 問題描述 完成類似字串複製的功能,去除str中的空格,仍儲存在str中 程式輸入 程式輸出 去除str中的空格,仍儲存在str中 includeusing namespace std int m...