將陣列的內容利用大括號包起來
直接將數值內容存放在二維陣列當中- #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;
- }
複製代碼 |