Board logo

標題: 陣列[三] [打印本頁]

作者: 周政輝    時間: 2018-2-10 15:12     標題: 陣列[三]

宣告一個2*2的陣列表格
裡面存放的內容為1 2 3 4
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int num [2][2];
  7.     num[0][0] =1;
  8.     num[0][1] =2;
  9.     num[1][0] =3;
  10.     num[1][1] =4;
  11.    
  12.     cout<< num[0][0]<< endl;
  13.     cout<< num[0][1]<< endl;
  14.     cout<< num[1][0]<< endl;
  15.     cout<< num[1][1]<< endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 王駿愷    時間: 2018-2-10 15:14

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[2][2];
  7.     a[0][0]=1;
  8.     a[0][1]=2;
  9.     a[1][0]=3;
  10.     a[1][1]=4;
  11.     cout<<a[0][0]<<endl;
  12.     cout<<a[0][1]<<endl;
  13.     cout<<a[1][0]<<endl;
  14.     cout<<a[1][1]<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 洪翊展    時間: 2018-2-10 15:15

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int num[2][2];
  7.     num[0][0]=1;
  8.     num[0][1]=2;
  9.     num[1][0]=3;
  10.     num[1][1]=4;
  11.    
  12.     cout<<num[0][0]<<endl;
  13.     cout<<num[0][1]<<endl;
  14.     cout<<num[1][0]<<endl;
  15.     cout<<num[1][1]<<endl;
  16.    
  17. system("pause");
  18.     return 0;   
  19. }
複製代碼

作者: 戴嘉禾    時間: 2018-2-10 15:15

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.    int num[2][2];
  7.    num[0][0]=1;
  8.    num[0][1]=2;
  9.    num[1][0]=3;
  10.    num[1][1]=4;
  11.    cout << num[0][0] <<endl;
  12.    cout << num[0][1] <<endl;
  13.    cout << num[1][0] <<endl;
  14.    cout << num[1][1] <<endl;
  15.    system("pause");
  16.    return 0;   
  17. }
複製代碼

作者: 林峻安    時間: 2018-2-10 15:16

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int num[2][2];
  7.     num[0][0]=1;
  8.     num[0][1]=2;
  9.     num[1][0]=3;
  10.     num[1][1]=4;
  11.    
  12.     cout<< num[0][0]<<endl;
  13.     cout<< num[0][1]<<endl;
  14.     cout<< num[1][0]<<endl;
  15.     cout<< num[1][1]<<endl;
  16.    
  17.    
  18.    
  19.      
  20.     system("pause");
  21.     return 0;     
  22. }
複製代碼

作者: 黃安立    時間: 2018-2-10 15:17

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int num [2][2];
  7.     num[0][0] =1;
  8.     num[0][1] =2;
  9.     num[1][0] =3;
  10.     num[1][1] =4;
  11.    
  12.     cout<< num[0][0]<< endl;
  13.     cout<< num[0][1]<< endl;
  14.     cout<< num[1][0]<< endl;
  15.     cout<< num[1][1]<< endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 吳秉翰    時間: 2018-2-10 15:18

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int num[2][2];
  7.     num [0][0]=1;
  8.     num [0][1]=2;
  9.     num [1][0]=3;
  10.     num [1][1]=4;
  11.     cout<<num [0][0];
  12.     cout<<num [0][1];
  13.     cout<<num [1][0];
  14.     cout<<num [1][1];
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 洪翊庭    時間: 2018-2-10 15:18

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int num [2][2];
  7.     num[0][0] =1;
  8.     num[0][1] =2;
  9.     num[1][0] =3;
  10.     num[1][1] =4;
  11.    
  12.     cout<< num[0][0]<< endl;
  13.     cout<< num[0][1]<< endl;
  14.     cout<< num[1][0]<< endl;
  15.     cout<< num[1][1]<< endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 鄭楀諺    時間: 2018-2-26 16:08

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int num[2][2];
  7.         num[0][0]=1;
  8.         num[0][1]=2;
  9.         num[1][0]=3;
  10.         num[1][1]=4;
  11.         cout<<num[0][0]<<endl;
  12.         cout<<num[0][1]<<endl;
  13.         cout<<num[1][0]<<endl;
  14.         cout<<num[1][1];
  15. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2