利用巢狀迴圈
將二維陣列的內容輸出至畫面上- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int num [2][2] ={{1,2},{3,4}};
-
-
- cout<< num[0][0]<< endl;
- cout<< num[0][1]<< endl;
- cout<< num[1][0]<< endl;
- cout<< num[1][1]<< endl;
- system("pause");
- return 0;
- }
複製代碼 |