返回列表 發帖

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

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


本帖隱藏的內容需要回復才可以瀏覽

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string a[5][2]={{"大熊","0900 000 000"},
  7.                     {"胖虎","0911 111 111"},
  8.                     {"小夫","0922 222 222"},
  9.                     {"靜香","0933 333 333"},
  10.                     {"多拉A夢","0944 444 444"}};
  11.     cout<<"姓名\t電話"<<endl;
  12.     cout<<"================="<<endl;
  13.     for(int i=0; i<5; i++)
  14.     {
  15.         for(int j=0; j<2; j++)
  16.         {
  17.             cout<<a[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 a[5][2]={{"大雄","0980-454666"},
  7.                      {"季安","0911-333898"},
  8.                      {"宜靜","0922-999579"},
  9.                      {"阿福","0938-234567"},
  10.                      {"小叮噹","0911-864356"}};
  11.     cout<<"姓名\t電話"<<endl;
  12.     cout<<"==========================="<<endl;

  13.     for(int i=0;i<=4;i++){
  14.             cout<<i+1<<"\t";

  15.         for(int j=0;j<=1;j++){

  16.             cout<<a[i][j]<<"\t";
  17.         }
  18.         cout<<endl;

  19.     }




  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string n[5][2]={{"大雄","0980-454666"},
  7.                  {"技安","0911-333898"},
  8.                  {"宜靜","0922-999579"},
  9.                  {"阿福","0938-234567"},
  10.                  {"小叮噹","0911-864356"}};
  11.     cout<<"姓名\t電話"<<endl;
  12.     for(int i=0; i<5; i++){
  13.         for(int j=0; j<2; j++){
  14.             cout<<n[i][j]<<"\t";
  15.         }
  16.         cout<<endl;

  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 a[5][2]={{"大熊","0900 000 000"},
  7.                     {"胖虎","0911 111 111"},
  8.                     {"小夫","0922 222 222"},
  9.                     {"靜香","0933 333 333"},
  10.                     {"多拉A夢","0944 444 444"}};
  11.     cout<<"姓名\t電話"<<endl;
  12.     cout<<"================="<<endl;
  13.    
  14.    
  15.        
  16.                      
  17.     for(int i=0 ; i<5 ;i++)
  18.     {
  19.             cout<<i+1<<"\t";
  20.         for(int j=0 ; j<2 ;j++)
  21.         
  22.         cout<<a[i][j]<<"\t";
  23.          cout<<endl;   
  24.         
  25.     }
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string n[5][2]={{"大雄","0980-454666"},
  7.                     {"技安","0911-333898"},
  8.                     {"宜靜","0922-999579"},
  9.                     {"阿福","0938-234567"},
  10.                     {"小叮噹","0911-864356"}};
  11.     cout<<"姓名\t電話"<<endl;
  12.     cout<<"==================="<<endl;
  13.     for(int i=0; i<5; i++)
  14.     {
  15.         for(int j=0; j<2; j++)
  16.         cout<<n[i][j]<<"\t";
  17.         cout<<endl;
  18.     }
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     string n[5][2]={{"大雄","0980-454666"},
  6.                      {"季安","0911-333898"},
  7.                      {"宜靜","0922-999579"},
  8.                      {"阿福","0938-234567"},
  9.                      {"小叮噹","0911-864356"}};
  10.     cout<<"姓名\t電話\t"<<endl;
  11.     cout<<"========================="<<endl;
  12.     for(int i=0;i<5;i++){
  13.         for(int j=0;j<2;j++){
  14.             cout<<n[i][j]<<"\t";
  15.         }cout<<endl;
  16.     }

  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5. string phone[5][2]={
  6. {"大雄","0980-454666"},
  7. {"技安","0911-333898"},
  8. {"宜靜","0922-999579"},
  9. {"阿福","0938-234567"},
  10. {"小叮噹","0911864356"}


  11. };
  12. cout<<"姓名\t電話"<<endl;
  13. cout<<"============"<<endl;
  14. for(int i=0;i<5;i++)
  15. {
  16.   for(int j=0;j<2;j++)
  17.   {
  18.    cout<<phone[i][j]<<"\t";
  19.   }
  20. cout<<endl;
  21. }


  22. system("pause");
  23. return 0;

  24. }
複製代碼
}

TOP

返回列表