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

溫馨提示×

c語言二維數組輸入的方法是什么

小億
754
2023-08-10 04:24:25
欄目: 編程語言

在C語言中,可以使用雙層循環來輸入二維數組。以下是一種常用的方法:

#include <stdio.h>
int main() {
int rows, cols;
printf("Enter the number of rows: ");
scanf("%d", &rows);
printf("Enter the number of columns: ");
scanf("%d", &cols);
int arr[rows][cols];
printf("Enter the elements of the array:\n");
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
scanf("%d", &arr[i][j]);
}
}
printf("The entered array is:\n");
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
printf("%d ", arr[i][j]);
}
printf("\n");
}
return 0;
}

在上述代碼中,首先要求用戶輸入二維數組的行數和列數。然后,根據輸入的行數和列數定義一個二維數組。接下來,使用雙層循環逐個輸入二維數組的元素。最后,再次使用雙層循環打印出輸入的二維數組。

0
玉溪市| 天峻县| 庄浪县| 长葛市| 水城县| 通道| 长沙市| 瓮安县| 陆良县| 泸水县| 宁明县| 萝北县| 伊宁县| 利辛县| 台东市| 于都县| 维西| 吴川市| 永宁县| 长春市| 射洪县| 房山区| 青浦区| 奉化市| 安福县| 林州市| 修武县| 盐津县| 宜君县| 永德县| 白玉县| 重庆市| 黄大仙区| 马龙县| 全州县| 新化县| 兴城市| 东乡族自治县| 枞阳县| 浦江县| 伊宁市|