返回列表 發帖

陣列(七)

將陣列的內容利用大括號包起來
直接將數值內容存放在二維陣列當中
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int num [2][2] ={{1,2},{3,4}};

  7.    
  8.     cout<< num[0][0]<< endl;
  9.     cout<< num[0][1]<< endl;
  10.     cout<< num[1][0]<< endl;
  11.     cout<< num[1][1]<< endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表