在C++中,可以使用兩個嵌套的for循環來遍歷二維數組。首先,使用外部循環來迭代每一行,然后在內部循環中遍歷每一列。
以下是一個示例代碼,演示了如何使用兩個for循環遍歷一個二維數組:
#include <iostream>
int main() {
int arr[3][4] = {{1, 2, 3, 4}, {5, 6, 7, 8}, {9, 10, 11, 12}};
// 遍歷二維數組
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 4; j++) {
std::cout << arr[i][j] << " ";
}
std::cout << std::endl;
}
return 0;
}
輸出結果為:
1 2 3 4
5 6 7 8
9 10 11 12
在上面的示例中,外部循環變量i
用于迭代每一行,內部循環變量j
用于遍歷當前行的每一列。通過使用arr[i][j]
來訪問數組中的元素。