亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c語言二維數組行列求和的方法是什么

小億
176
2024-05-31 18:28:12
欄目: 編程語言

在C語言中,可以通過嵌套循環來遍歷二維數組,并對每行和每列進行求和操作。以下是一個示例代碼來實現二維數組行列求和:

#include <stdio.h>

int main() {
    int rows, cols;
    printf("Enter the number of rows and columns of the array: ");
    scanf("%d %d", &rows, &cols);

    int arr[rows][cols];
    printf("Enter the elements of the array:\n");

    // Input elements of the array
    for(int i = 0; i < rows; i++) {
        for(int j = 0; j < cols; j++) {
            scanf("%d", &arr[i][j]);
        }
    }

    // Calculate row sums
    printf("Row sums:\n");
    for(int i = 0; i < rows; i++) {
        int sum = 0;
        for(int j = 0; j < cols; j++) {
            sum += arr[i][j];
        }
        printf("Row %d sum: %d\n", i+1, sum);
    }

    // Calculate column sums
    printf("Column sums:\n");
    for(int j = 0; j < cols; j++) {
        int sum = 0;
        for(int i = 0; i < rows; i++) {
            sum += arr[i][j];
        }
        printf("Column %d sum: %d\n", j+1, sum);
    }

    return 0;
}

在上面的代碼中,首先用戶輸入二維數組的行數和列數,然后輸入數組的元素。接著分別計算每行和每列的和,并輸出結果。

0
巢湖市| 兴业县| 天峨县| 澄城县| 玉屏| 剑河县| 新邵县| 临沂市| 射阳县| 通州区| 留坝县| 土默特右旗| 安化县| 秀山| 白山市| 盐津县| 福海县| 蒲江县| 嘉峪关市| 宣城市| 博爱县| 南丹县| 惠水县| 旬阳县| 同心县| 米脂县| 那曲县| 惠来县| 沂源县| 大庆市| 栾城县| 达日县| 孝昌县| 梅河口市| 托克托县| 汉阴县| 宜丰县| 高安市| 临洮县| 高雄市| 安阳市|