91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c語言怎么統計指定數字的個數

小億
931
2024-02-20 10:59:40
欄目: 編程語言

要統計指定數字的個數,可以通過遍歷數組或者數字的方式來實現。以下是兩種方法的示例:

方法一:統計數組中指定數字的個數

#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;
}

以上代碼示例可以統計數組中指定數字的個數和整數中指定數字的個數。你可以根據需要選擇適合的方法來統計指定數字的個數。

0
景泰县| 昌黎县| 荥经县| 济宁市| 江西省| 宜兰市| 浠水县| 岱山县| 古交市| 漳州市| 双辽市| 凤庆县| 当阳市| 濮阳市| 合作市| 威海市| 娄底市| 汨罗市| 瑞丽市| 疏附县| 长沙市| 赤城县| 海淀区| 台北县| 襄樊市| 抚松县| 肃北| 缙云县| 永仁县| 六安市| 闻喜县| 平邑县| 丹东市| 乌鲁木齐市| 敖汉旗| 米易县| 韶关市| 阿合奇县| 察哈| 鹤岗市| 鞍山市|