返回列表 發帖

購物系統 (二)

本帖最後由 鄭繼威 於 2023-5-5 20:30 編輯

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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         
  7.         //商品名稱
  8.     string name[]={"遙控汽車","飛機模型","足球\t","拼圖\t","玩具槍","可愛玩偶","籃球\t"};
  9.     //商品價格
  10.         int price[]={450,550,325,200,660,150,380};
  11.        
  12.         cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  13.     cout<<"[商品價目表]"<<endl;
  14.    
  15.     //把選項|名稱|價格輸出
  16.     for(int i=0;i<=6;i++)
  17.     {
  18.             cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<endl;
  19.         }
  20.         cout<<"(8)結帳"<<endl;
  21.    
  22.     int option,qty,sum=0;
  23.    
  24.     re:
  25.     cout<<"你要買什麼?";
  26.         cin>>option;
  27.         //1~7
  28.         if(option>=1 and option<=7)
  29.         {
  30.                 //購物
  31.                 cout<<"你要買幾個?";
  32.                 cin>>qty;
  33.             sum=sum+(price[option-1]*qty);
  34.             goto re;
  35.         }
  36.         else if(option==8)
  37.         {
  38.                 //結帳
  39.                 goto checkout;
  40.         }
  41.         else
  42.         {
  43.                 cout<<"輸入錯誤"<<endl;
  44.                 goto re;
  45.         }

  46.         checkout:
  47.                 cout<<"總共="<<sum<<endl;
  48. //        cout<<"總共="<<price[option-1]*qty<<"錢"<<endl;

  49.        
  50.    
  51.     system("pause");
  52.     return 0;
  53. }
複製代碼

  1. [code]#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[]={50,75,60,75,30,};
  11.     cout<<"☆★☆智能飲料店☆★☆"<<endl<<endl;
  12.     cout<<"[商品價目表]"<<endl;
  13.     for(int i=0; i<4; 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. }
複製代碼
[/code]

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main(){
  5.     string names[3]={"餅乾","糖果","飲料"};
  6.     int price[3]={5,10,15};
  7.     int n;
  8.     int opt;
  9.     bool keep=true;
  10.     int sum=0;
  11.     for(int i=0;i<=2;i++){
  12.             cout<<i+1<<names[i]<<"\t"<<price[i]<<"\n";
  13.     }
  14.     cout<<"<4>結帳\n";
  15.     while(keep){
  16.                 cout<<"輸入要買的商品號碼:";
  17.                 cin>>opt;
  18.                 if(opt!=1 and opt!=2 and opt!=3){
  19.                            cout<<"總共"<<sum<<"元\n";
  20.                            break;
  21.                 }
  22.                 else{
  23.                      cout<<"請輸入數量:";
  24.                      cin>>n;
  25.                      sum+=price[opt-1]*n;
  26.                 }
  27.     }         
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

TOP

  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main(){
  5. string m[8]={"兔子布偶","文具組合","高級餅乾","鍵盤滑鼠","遊戲點數","藍色外套","神秘獎品","結帳"};
  6. int n[8]={100,200,150,800,487,666,999, };
  7. cout<<"雜七雜八雜貨店價目表"<<endl;
  8. for(int a=0;a<7;a++){
  9.         
  10.         cout<<a+1<<"\t"<<m[a]<<"\t"<<n[a]<<"元"<<endl;
  11.         
  12.         }
  13. cout<<"8\t"<<m[7]<<endl;


  14. int o,q,s=0;
  15. re:
  16. cout<<endl<<"請輸入商品代碼:\t";
  17. cin>>o;
  18. if(o>0 && o<8){
  19.         cout<<endl<<"請輸入商品數量:\t";
  20.         cin>>q;
  21.         s=s+(n[o-1]*q);
  22.         goto re;
  23.         }
  24. else if(o==8){
  25.      goto checkout;}
  26. else{
  27.      cout<<"輸入錯誤"<<endl;
  28.      goto re;
  29.      }
  30. checkout:
  31. cout<<"總共是:"<<s<<endl;
  32. system ("pause");
  33. return 0;
  34. }
複製代碼
Attention Seeker </3

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int p,qty;
  6.     int sum=0;
  7.   string name[]={"R/C Car", "Model Plane", "Football", "Tennis Ball","Toy Gun","Basketball"};
  8.   int price[]={400,690,678,560,570,300};
  9.   cout<<"*****Da Epic Toy Store*****"<<endl<<endl;
  10.   cout<<"[Products]"<<endl;
  11.   
  12.   for(int i=0;i<=5;i++)
  13.   {
  14.           cout<<"("<<i+1<<")"<<name[i]<<"\t"<<"$"<<price[i]<<endl;
  15.           }
  16.    
  17.     cout<<"(8)Checkout"<<endl<<endl;
  18.     re:
  19.   cout<<"Enter the number corresponding to the desired product: ";
  20.   cin>>p;
  21.   if(p>=1 && p<=7)
  22.   {
  23.           cout<<"Quantity:";
  24.           cin>>qty;
  25.           sum=sum+(price[p-1]*qty);
  26.           goto re;
  27.           }else if(p==8)
  28.           {
  29.                 goto checkout;
  30.                
  31.                 }
  32.                 checkout:
  33.                         
  34.           cout<<endl<<"Total:"<<"$"<<sum<<endl;         
  35.    
  36.     system("pause");
  37.     return 0;
  38. }
複製代碼

TOP

本帖最後由 盧玄皓 於 2023-4-28 21:10 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string n[]={"手槍      ","彈藥        ","98K      ","AWM       ","M500       ","沙漠之鷹      "};
  7.    int p,q,sum=0;
  8.    int price[]={10000,450,98000,100000,43000,52000};
  9.    
  10.      cout<<"fire槍械店"<<endl<<endl;
  11.    cout<<"[槍械價目表]"<<endl;
  12.    for(int i=0;i<6;i++)
  13.     {
  14.             cout<<"("<<i+1<<")"<<n[i]<<"\t"<<price[i]<<endl;
  15.         }
  16.         cout<<"(7)結帳"<<endl<<endl;
  17.     re:
  18.     cout<<"請輸入商品代碼: ";
  19.     cin>>p;
  20.     if(p==7)
  21.     {
  22.         goto checkout;
  23.     }else if(p>=1 && p<=6)
  24.     {
  25.         cout<<"數量: ";
  26.         cin>>q;
  27.         sum+=price[p-1]*q;
  28.         goto re;  
  29.     }else
  30.     {
  31.         goto re;     
  32.     }
  33.     checkout:
  34.     cout<<endl<<"總共"<<sum<<"元!"<<endl;
  35.         
  36.     system("pause");
  37.      goto re;
  38.     return 0;
  39. }
複製代碼

TOP

5

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4.     string name[]={"遙控汽車","飛機模型","足球    ","拼圖    ","玩具槍  ","可愛玩偶","籃球    "};
  5.     int price[]={450,550,325,200,660,150,380};
  6.    
  7.     int a,b,sum=0;
  8.    
  9.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  10.     cout<<"[商品價目表]"<<endl;

  11.     for(int i=0; i<7; i++){
  12.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;        
  13.     }
  14.     cout<<"(8)結帳"<<endl;
  15.    
  16.     re:
  17.     cout<<"請輸入商品代碼: ";
  18.     cin>>a;
  19.     if(a>=1 and a<=7){
  20.         cout<<"數量: ";
  21.         cin>>b;
  22.         sum+=price[a-1]*b ;
  23.         goto re;      
  24.     }
  25.     else if(a==8){
  26.         goto checkout;
  27.     }
  28.    
  29.     checkout:
  30.     cout<<endl<<"總共"<<sum<<"元"<<endl;
  31.    
  32.     system("pause");
  33.     return 0;
  34. }
複製代碼

TOP

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

TOP

回復 4# 張絜晰

TOP

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

  32.     checkout:
  33.     cout<<endl<<"總共"<<sum<<"元"<<endl;         
  34.    
  35.     system("pause");  
  36.     return 0;
  37. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4.     re:
  5.     system("cls");
  6.     int p,q,sum=0;
  7.     string name[]={"傷藥","解麻藥","好傷藥","寶貝球","高級球"};
  8.     int  price[]={200,400,500,200,800};
  9.         cout<<"   寶可夢商店   "<<endl<<endl;  
  10.     cout<<"[商品價格表]"<<endl;
  11.    
  12.     for(int i=0; i<5; i++)
  13.          cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  14.           cout<<"(6)結帳"<<endl<<endl;
  15.     re2:
  16.     cout<<"請輸入商品代碼:";
  17.     cin>>p;
  18.     if(p==6)
  19.     {
  20.         goto checkout;
  21.     }else if(p>=1 && p<=5)
  22.     {
  23.         cout<<"數量:";
  24.         cin>>q;
  25.         sum+=price[p-1]*q;
  26.         goto re2;  
  27.     }else
  28.     {
  29.         goto re;     
  30.     }
  31.     checkout:
  32.     cout<<endl<<"總共"<<sum<<"元!"<<endl;         
  33.    
  34.        
  35.         system("pause");
  36.     goto re;   
  37.     return 0;
  38. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4.     string name[]={"遙控汽車","飛機模型","足球    ","拼圖    ","玩具槍  ","可愛玩偶","籃球    "};
  5.     int price[]={450,550,325,200,660,150,380};
  6.    
  7.     int a,b,sum=0;
  8.    
  9.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  10.     cout<<"[商品價目表]"<<endl;

  11.     for(int i=0; i<7; i++){
  12.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;        
  13.     }
  14.     cout<<"(8)結帳"<<endl;
  15.    
  16.     re:
  17.     cout<<"請輸入商品代碼: ";
  18.     cin>>a;
  19.     if(a>=1 and a<=7){
  20.         cout<<"數量: ";
  21.         cin>>b;
  22.         sum+=price[a-1]*b ;
  23.         goto re;      
  24.     }
  25.     else if(a==8){
  26.         goto checkout;
  27.     }
  28.    
  29.     checkout:
  30.     cout<<endl<<"總共"<<sum<<"元"<<endl;
  31.    
  32.     system("pause");
  33.     return 0;
  34. }
複製代碼

TOP

本帖最後由 呂得銓 於 2023-5-17 19:36 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[]={"遙控汽車","飛機模型","足球\t","拼圖\t","玩具槍","可愛玩偶","籃球\t"};
  7.     int price[]={450,550,325,200,660,150,380};
  8.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  9.     cout<<"[商品價目表]"<<endl;
  10.     for(int i=0;i<=6;i++)
  11.     {
  12.        cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<endl;
  13.     }
  14.     cout<<"(8)結帳"<<endl;
  15.     int option,qty,sum=0;
  16.     re:
  17.     cout<<"你要買什麼?";
  18.     cin>>option;
  19.     if(option>=1 and option<=7)
  20.     {
  21.         cout<<"你要買幾個?";
  22.         cin>>qty;
  23.         sum=sum+(price[option-1]*qty);
  24.         goto re;
  25.     }
  26.     else if(option==8)
  27.     {
  28.         goto checkout;
  29.     }
  30.     checkout:
  31.     cout<<"總共="<<sum<<"元"<<endl;
  32.     system("pause");
  33.     return 0;
  34. }
複製代碼

TOP

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

TOP

返回列表