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

溫馨提示×

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
东至县| 奉新县| 商丘市| 西城区| 苍梧县| 云安县| 淮北市| 顺昌县| 靖远县| 盐源县| 郎溪县| 江永县| 克东县| 巧家县| 资讯| 稻城县| 深州市| 汶上县| 当阳市| 民勤县| 花莲县| 治多县| 富蕴县| 科尔| 天津市| 涞水县| 通辽市| 罗城| 江孜县| 腾冲县| 嵊泗县| 南投县| 新田县| 昌江| 京山县| 紫云| 南平市| 甘德县| 沂水县| 泸西县| 阿拉善右旗|