要統計指定數字的個數,可以通過遍歷數組或者數字的方式來實現。以下是兩種方法的示例:
方法一:統計數組中指定數字的個數
#include <stdio.h>
int countNumber(int arr[], int size, int target) {
int count = 0;
for (int i = 0; i < size; i++) {
if (arr[i] == target) {
count++;
}
}
return count;
}
int main() {
int arr[] = {1, 2, 3, 2, 4, 2, 5};
int target = 2;
int count = countNumber(arr, 7, target);
printf("數字 %d 在數組中出現的次數為:%d\n", target, count);
return 0;
}
方法二:統計指定數字的個數
#include <stdio.h>
int countDigit(int num, int target) {
int count = 0;
while (num > 0) {
if (num % 10 == target) {
count++;
}
num /= 10;
}
return count;
}
int main() {
int num = 123452;
int target = 2;
int count = countDigit(num, target);
printf("數字 %d 在 %d 中出現的次數為:%d\n", target, num, count);
return 0;
}
以上代碼示例可以統計數組中指定數字的個數和整數中指定數字的個數。你可以根據需要選擇適合的方法來統計指定數字的個數。