在C++中遍歷多維數組可以使用嵌套循環來實現,具體步驟如下:
int arr[2][3] = {{1, 2, 3}, {4, 5, 6}};
for (int i = 0; i < 2; i++) {
for (int j = 0; j < 3; j++) {
cout << arr[i][j] << " ";
}
cout << endl;
}
int arr[2][3] = {{1, 2, 3}, {4, 5, 6}};
int *ptr = &arr[0][0];
for (int i = 0; i < 2 * 3; i++) {
cout << *(ptr + i) << " ";
if ((i + 1) % 3 == 0) {
cout << endl;
}
}
以上是兩種常用的方法來遍歷多維數組,可以根據實際情況選擇適合的方法進行遍歷。