返回列表 發帖

[隨堂測驗] 陣列- 電話簿

試以二維陣列的概念, 輸出如下的電話簿.

本帖最後由 蔡季樺 於 2016-4-16 11:44 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string x[6][2]={{"姓名","電話"},
  7.                    {"Tom","0929645878"},
  8.                    {"Tony","0935467898"},
  9.                    {"bank","0921654879"},
  10.                    {"beach","0929005432"},
  11.                    {"yee~","0987987732"}};
  12.     for(int i=0; i<=5; i++)
  13.     {
  14.         for(int j=0; j<=1; j++)
  15.         {
  16.              cout<<x[i][j]<<"\t";
  17.         }
  18.         cout<<endl;            
  19.     }
  20.     cout<<endl;
  21.     system("pause");
  22.     return 0;   
  23. }
複製代碼

TOP

本帖最後由 蔡庭豪 於 2016-4-16 11:30 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string namenumber[5][2]={{"大雄","0980454666"},{"妓安","0911333898"},{"宜靜","0922999579"},{"啊福","0938234567"},{"叮噹小","0911864356"}};
  7.     cout<<"姓名     電話號碼"<<endl;     
  8.     cout<<"=========================="<<endl;
  9.     for(int i=0;i<5;i++)
  10.     {
  11.             for(int j=0;j<2;j++)
  12.             {      
  13.                 cout<<namenumber[i][j]<<"\t";
  14.             }
  15.             cout<<endl;
  16.      }
  17.                   
  18.         system("pause");
  19.     return 0;   
  20. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      string arr[5][2]={{"小明","0923-456-789"},
  7.                        {"小王","0983-945-536"},
  8.                        {"小張","0933-243-555"},
  9.                        {"小人","0977-525-656"},
  10.                        {"小影","09開頭的不告訴你"}};
  11.     cout<<"姓名     電話號碼"<<endl;     
  12.     cout<<"=========================="<<endl;
  13.     for(int i=0;i<5;i++)
  14.     {
  15.             for(int =j=0;j<2;j++)
  16.             {
  17.                  cout<<arr[i][j]<<"\t";
  18.             }
  19.             cout<<endl;
  20.     }
  21.     system("pause");
  22.     return 0;   
  23. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string array[5][2]={{"...", "094463443"},
  7.                        {"---", "096257242"},
  8.                        {"///", "095678901"},
  9.                        {"***", "091234567"},
  10.                        {"+++","091234587"}};
  11.     cout << "姓名" << "   " << "電話" << endl;
  12.     cout << "====================================" << endl;
  13.     for(int j = 0; j < 5; j++)                                                                              
  14.     {
  15.             for(int i = 0; i < 2; i++)
  16.             {
  17.                     cout << array[j][i] << "\t";
  18.             }
  19.             cout << endl;
  20.     }
  21.     system("pause");
  22.     return 0;
  23. }
複製代碼

TOP

返回列表