返回列表 發帖

購物系統 (二)

新增 "請輸入商品代碼:" 與 "數量:" 的選項,
並於結帳時計算出總共多少錢,執行畫面如下圖所示。

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int p,q,sum=0;
  9.     string name[]={"遙控汽車","飛機模型","足球    ","拼圖    ","玩具槍  ","可愛玩偶","籃球    "};
  10.     int price[]={450,550,325,200,660,150,380};
  11.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  12.     cout<<"[商品價目表]"<<endl;
  13.     for(int i=0; i<7; i++)
  14.          cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  15.     cout<<"(8)結帳"<<endl<<endl;
  16.     re2:
  17.     cout<<"請輸入商品代碼: ";
  18.     cin>>p;
  19.     if(p==8)
  20.     {
  21.         goto checkout;
  22.     }else if(p>=1 && p<=7)
  23.     {
  24.         cout<<"數量: ";
  25.         cin>>q;
  26.         sum+=price[p-1]*q;
  27.         goto re2;  
  28.     }else
  29.     {
  30.         goto re;     
  31.     }
  32.     checkout:
  33.     cout<<endl<<"總共"<<sum<<"元!"<<endl;         
  34.     system("pause");
  35.     goto re;   
  36.     return 0;
  37. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string a[]{"遙控汽車","飛機模型","足球    ","拼圖    ","玩具槍  ","可愛玩偶","籃球    ",};
  7.     int b[]={450,550,325,200,660,150,380};


  8.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  9.     cout<<"商品價目表"<<endl;
  10.     for(int i=0; i<7;  i++)
  11.     {
  12.         cout<<"<"<<i+1<<">"<<a[i]<<"\t"<<b[i]<<"元"<<endl;
  13.     }
  14.     cout<<"<8>結帳"<<endl;
  15.     re:

  16.     cout<<endl;
  17.     int x,y,w=-1,sum=0;

  18.     re2:
  19.     cout<<"請輸入商品代碼:";
  20.     cin>>x;
  21.     if(x==8)
  22.     {
  23.         goto out;
  24.     }
  25.     else if(x>=1&&x<=7)
  26.     {
  27.         cout<<"請輸入購買數量:";
  28.         cin>>y;
  29.         sum+=b[x-1]*y;
  30.         goto re2;
  31.     }
  32.     else
  33.     {
  34.         cout<<"輸入錯誤"<<endl;
  35.         goto re2;
  36.     }
  37.     out:
  38.     cout<<endl;
  39.     cout<<endl<<"總共"<<sum<<"元!"<<endl;


  40.     system("pause");
  41.     return 0;
  42. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int p,q,r=0;
  9.     string a[7]={"遙控汽車","飛機模型","足球/t","拼圖/t","玩具槍","可愛玩偶","籃球/t"};
  10.     int b[7]={450,550,325,200,660,150,380};
  11.     cout<<"玩具店"<<endl<<endl;
  12.     cout<<"[價目表]"<<endl;
  13.     for(int i=0; i<7; i++)
  14.          cout<<"("<<i+1<<")"<<a[i]<<"\t"<<b[i]<<"元"<<endl;
  15.          cout<<"(8)結帳"<<endl<<endl;
  16.     re2:
  17.     cout<<"請輸入商品代碼: ";
  18.     cin>>p;
  19.     if(p<=8&&p>=1){
  20.         if(p==8){
  21.                 goto checkout;
  22.         }
  23.         else{
  24.             cout<<"數量: ";
  25.             cin>>q;
  26.             r+=b[p-1]*q;
  27.             goto re2;

  28.         }
  29.     }
  30.     else{
  31.         goto re;
  32.     }





  33.     checkout:
  34.     cout<<endl<<"總共"<<r<<"元!"<<endl;

  35.     system("pause");
  36.     goto re;
  37.     return 0;
  38. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int p,q,sum=0;
  9.     string name[]={"遙控汽車","飛機模型","足球    ","拼圖    ","玩具槍  ","可愛玩偶","籃球    "};
  10.     int price[]={450,550,325,200,660,150,380};
  11.     cout<<"智能玩具店"<<endl<<endl;
  12.     cout<<"[商品價目表]"<<endl;
  13.     for(int i=0; i<7; i++)
  14.          cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  15.     cout<<"(8)結帳"<<endl<<endl;
  16.     re2:
  17.     cout<<"請輸入代碼: ";
  18.     cin>>p;
  19.     if(p==8){
  20.         goto checkout;
  21.     }
  22.     else if(p>=1 && p<=7){
  23.         cout<<"數量: ";
  24.         cin>>q;
  25.         sum+=price[p-1]*q;
  26.         goto re2;
  27.     }
  28.     else
  29.         goto re;
  30.     checkout:
  31.     cout<<endl<<"總共"<<sum<<"元"<<endl;
  32.     system("pause");
  33.     goto re;
  34.     return 0;

  35. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int p,q,sum=0;
  9.     string name[]={"遙控汽車","飛機模型","足球    ","拼圖    ","玩具槍  ","可愛玩偶","籃球    "};
  10.     int price[]={450,550,325,200,660,150,380};
  11.     cout<<"*****智能玩具店*****"<<endl<<endl;
  12.     cout<<"[商品價目表]"<<endl;
  13.     for(int i=0; i<7; i++)
  14.          cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  15.     cout<<"(8)結帳"<<endl<<endl;
  16.     re2:
  17.     cout<<"請輸入商品代碼: ";
  18.     cin>>p;
  19.     if(p==8)
  20.     {
  21.         goto checkout;
  22.     }else if(p>=1 && p<=7)
  23.     {
  24.         cout<<"數量: ";
  25.         cin>>q;
  26.         sum+=price[p-1]*q;
  27.         goto re2;  
  28.     }else
  29.     {
  30.         goto re;     
  31.     }
  32.     checkout:
  33.     cout<<endl<<"總共"<<sum<<"元!"<<endl;         
  34.     system("pause");
  35.     goto re;   
  36.     return 0;
  37. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int p,q,sum=0;
  9.     string n[]={"遙控汽車","飛機模型","足球    ","拼圖    ","玩具槍  ","可愛玩偶","籃球    "};
  10.     int price[]={450,550,325,200,660,150,380};
  11.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  12.     cout<<"[商品價目表]"<<endl;
  13.     for(int i=0;i<7;i++)
  14.           cout<<"("<<i+1<<")"<<n[i]<<"\t"<<price[i]<<"元"<<endl;
  15.           cout<<"(8)結帳"<<endl<<endl;

  16.     re2:
  17.         cout<<"請輸入商品代碼: ";
  18.         cin>>p;
  19.     if(p==8)
  20.         goto checkout;
  21.     else if(p<=7 && p>=1){
  22.         cout<<"數量: ";
  23.         cin>>q;
  24.         sum+=price[p-1]*q;
  25.         goto re2;

  26.     }
  27.     else
  28.     {
  29.         goto re;
  30.     }
  31.     checkout:
  32.     cout<<endl<<"總共"<<sum<<"元!"<<endl;
  33.     system("pause");
  34.     goto re;
  35.     return 0;

  36.     system("pause");
  37.     return 0;
  38. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int p, q, sum=0;
  9.     string name[]={"遙控汽車","飛機模型","足球    ","拼圖    ","玩具槍  ","可愛玩偶","籃球    "};
  10.     int price[]={450,550,325,200,660,150,380};
  11.     cout<<"★☆★智能玩具店★☆★"<<endl<<endl;
  12.     cout<<"[商品價目表]"<<endl;
  13.     for(int i=0; i<7; i++)
  14.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  15.     cout<<"(8)結帳"<<endl<<endl;
  16.     re2:
  17.     cout<<"請輸入商品代碼: ";
  18.     cin>>p;
  19.     if(p==8)
  20.     {
  21.         goto checkout;
  22.     }
  23.     else if(p>=1 && p<=7)
  24.     {
  25.         cout<<"數量: ";
  26.         cin>>q;
  27.         sum+=price[p-1]*q;
  28.         goto re2;
  29.     }
  30.     else
  31.     {
  32.         goto re;
  33.     }
  34.     checkout:
  35.     cout<<endl<<"總共"<<sum<<"元!"<<endl;
  36.     system("pause");
  37.     return 0;
  38. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5. while(true){
  6. system("cls");
  7. int p,q,sum=0;
  8. string name[]={"遙控汽車","飛機模型","足球    ","拼圖    ","玩具槍  ","可愛玩偶","籃球    "};
  9. int price[]={450,550,325,200,660,150,380};
  10. cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  11. cout<<"[商品價目表]"<<endl;
  12. for(int i=0;i<7;i++){
  13. cout<<"<"<<i+1<<">"<<name[i]<<"\t"<<price[i]<<"元"<<endl;}
  14. cout<<"<8>"<<"結帳"<<endl;



  15. while(true){
  16. cout<<"請輸入商品代碼"<<endl;
  17. cin>>p;
  18.   if(p==8)
  19. break;
  20. else if(p>=1&&p<=7){
  21. cout<<"數量:";
  22. cin>>q;
  23. sum+=price[p-1]*q;}
  24. else{
  25. cout<<"無效的商品代碼,請重新輸入"<<endl;
  26. break;}

  27. }

  28. cout<<endl<<"總共"<<sum<<"元!"<<endl;
  29.     system("pause");

  30. }

  31. system("pause");
  32. return 0;
  33. }
複製代碼

TOP

返回列表