宣告一個2*2的陣列表格
裡面存放的內容為1 2 3 4- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int num [2][2];
- num[0][0] =1;
- num[0][1] =2;
- num[1][0] =3;
- num[1][1] =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;
- }
複製代碼 |