Board logo

標題: 二維陣列輸入 [打印本頁]

作者: tonyh    時間: 2018-6-20 16:46     標題: 二維陣列輸入

本帖最後由 tonyh 於 2018-6-20 17:02 編輯

[attach]4249[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()   //主函式
  5. {
  6.     int s[5][3];
  7.    
  8.     for(int i=0; i<5; i++)
  9.     {
  10.          for(int j=0; j<3; j++)
  11.          {
  12.               cout<<"第"<<i<<"大坨,第"<<j<<"筆資料: ";
  13.               cin>>s[i][j];
  14.          }
  15.     }
  16.     cout<<endl<<"驗證:"<<endl;
  17.     for(int i=0; i<5; i++)
  18.     {
  19.          for(int j=0; j<3; j++)
  20.          {
  21.               cout<<s[i][j]<<"\t";
  22.          }
  23.          cout<<endl;
  24.     }
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼





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