返回列表 發帖

購物系統 (一)

運用陣列技巧, 設計一購物系統的商品價目表, 商店名稱與商品價格請同學們發揮創意自由發揮.
提示: 宣告兩個一維陣列, 分別裝商品名稱與商品價格.
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"智能玩具店"<<endl;
  7.     string num[7]={"(1)遙控車","(2)遙控飛機","(3)足球","(4)拼圖","(5)籃球","(6)玩具槍","(7)娃娃"};
  8.     int n[7]={750,550,555,78,885,1999,85};
  9.     for(int i=0;i<7;i++)
  10.     {
  11.       cout<<num[i]<<endl;     
  12.       cout<<n[i]<<endl;
  13.     }
  14.    
  15.     system("pause");
  16.      return 0;     
  17. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"智能玩具店"<<endl;
  7.     string num[7]={"(1)遙控車","(2)遙控飛機","(3)足球","(4)拼圖","(5)籃球","(6)玩具槍","(7)娃娃"};
  8.     int n[7]={750,550,555,78,885,1999,85};
  9.     for(int i=0;i<7;i++)
  10.     {
  11.       cout<<num[i]<<"\t";     
  12.       cout<<n[i]<<"\t";
  13.       cout<<endl;
  14.     }
  15.    
  16.     system("pause");
  17.      return 0;     
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    cout<<"☆★☆智能玩具店☆★☆"<<endl;
  7.    string f[7]=
  8.     {
  9.              "(1)遙控汽車",
  10.              "(2)飛機模型",
  11.              "(3)足球",
  12.              "(4)拼圖",
  13.              "(5)玩具槍",
  14.              "(6)可愛玩偶",
  15.              "(7)籃球"
  16.     };
  17.    int n[7]={450,550,325,200,660,150,380};
  18.    
  19.     for(int i=0;i<7;i++)
  20.      {
  21.            cout<<f[i]<<"\t"<<n[i]<<"元"<<endl;
  22.      }
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

TOP

本帖最後由 吳秉翰 於 2018-3-10 14:27 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string item []=
  7.     {
  8.     "(1)遙控汽車    ",
  9.     "(2)飛機模型    ",
  10.     "(3)足球        ",
  11.     "(4)拼圖        ",
  12.     "(5)玩具槍      ",
  13.     "(6)可愛玩偶    ",
  14.     "(7)籃球        "
  15.     };
  16.     int num []={450,550,325,200,660,150,380};
  17.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl<<"[商品價目表]"<<endl;
  18.     for(int i=0;i<7;i++)
  19.     {
  20.         cout<<item[i]<<num[i]<<"元"<<"\t"<<endl;
  21.     }
  22.     system("pause");
  23.     return 0;
  24. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    string item []={
  7.    "(1)遙控汽車     ",
  8.    "(2)飛機模型     ",
  9.    "(3)足球         ",
  10.    "(4)拼圖         ",
  11.    "(5)玩具槍       ",
  12.    "(6)可愛玩偶     ",
  13.    "(7)籃球         "};   
  14.    int num []={450,550,325,200,660,150,380};
  15.    cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  16.    cout<<"[商品價目表]"<<endl;
  17.    for(int i=0;i<7;i++)
  18.    {     
  19.      cout<<item[i]<<num[i]<<"元"<<"\t"<<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 num [8][3]={{" ","[玩具價目表]"," "},{"<1>","遙控車","450元"},{"<2>","飛機模型","100元"},{"<3>","足球","100元"},{"<4>","拼圖","100元"},{"<5>","狙擊槍","100元"},{"<6>","恰吉","150元"},{"<7>","籃球","450元"}};
  7.       cout<<"☆★☆智能玩具店☆★☆"<<endl;  
  8.       cout<<"                                                                                                                     "<<endl;                                             
  9.      
  10.      
  11.          for( int i=0; i<8; i++)
  12.          {
  13.          
  14.             for( int j=0; j<3; j++)
  15.           {
  16.             
  17.              cout<< num[i][j]<<"\t";
  18.                   
  19.           }
  20.           cout<<endl;   
  21.      }
  22.      
  23.          
  24.     system("pause");
  25.     return 0;   
  26. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    cout<<"智能玩具店"<<endl;
  7.      string name [7]={"遙控汽車","遙控飛機","足球","評圖","玩具槍","可愛玩偶","籃球"};   
  8.     int num[7]={450,550,325,200,660,150,380,};  
  9.     for (int i=0;i<7;i++)
  10.     {
  11.        cout<<name[i];
  12.        cout<<num[i]<<endl;
  13.        cout<<endl;
  14. }
  15.     system("pause");  
  16.   return 0;
  17. }   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    cout<<"智能玩具店"<<endl;
  7.      string name [7]={"(1)遙控汽車","(2)遙控飛機","(3)足球","(4)評圖","(5)玩具槍","(6)可愛玩偶","(7)籃球"};   
  8.     int num[7]={450,550,325,200,660,150,380};  
  9.     for (int i=0;i<7;i++)
  10.     {
  11.           cout<<name[i]<<"\t";
  12.        cout<<num[i]<<endl;
  13. }
  14. cout<<endl;
  15. int productnumber=0;
  16. int count=0;
  17. int total=0;

  18. cout<<"請輸入-1離開"<<endl;
  19. while(true)
  20. {
  21. cout<<"商店代碼"<<endl;
  22. cin>>productnumber;
  23. if(productnumber==-1)
  24. {break;
  25. }
  26. cout<<"數量"<<endl;
  27. cin>>count;
  28. total=total+num[count-1]*count;

  29. }
  30. cout<<"總金"<<total<<endl;
  31.     system("pause");  
  32.   return 0;
  33. }   
複製代碼

TOP

返回列表