習題5 5 使用函式統計指定數字的個數 15分

2022-07-17 19:51:11 字數 679 閱讀 2245

本題要求實現乙個統計整數中指定數字的個數的簡單函式。

int countdigit( int number, int digit );

其中number是不超過長整型的整數,digit為[0, 9]區間內的整數。函式countdigit應返回numberdigit出現的次數。

#include int countdigit( int number, int digit );

int main()

/* 你的**將被嵌在這裡 */

-21252 2

number of digit 2 in -21252: 3

int countdigit( int number, int

digit )

while(number>=10

) }

if(number==digit)

count=count+1;

return

count;

}

習題5 5 使用函式統計指定數字的個數

本題要求實現乙個統計整數中指定數字的個數的簡單函式。函式介面定義 int countdigit int number,int digit 其中number是不超過長整型的整數,digit為 0,9 區間內的整數。函式countdigit應返回number中digit出現的次數。裁判測試程式樣例 in...

習題5 5 使用函式統計指定數字的個數

選擇這個例題,因為裡面正好包括了昨天說的遞迴方法。其實pta上的題目一般可以一題多解,發現自己還是有點懶,沒有主動思考,一般做過一次答案成功就不去尋求多種解法了,這並不是乙個好的學習c的習慣。題目 本題要求實現乙個統計整數中指定數字的個數的簡單函式,介面函式定義 int countdigit int...

C 習題5 5 使用函式統計指定數字的個數

本題要求實現乙個統計整數中指定數字的個數的簡單函式。函式介面定義 int countdigit int number,int digit 其中number是不超過長整型的整數,digit為 0,9 區間內的整數。函式countdigit應返回number中digit出現的次數。裁判測試程式樣例 in...