返回列表 發帖

購物系統 (二)

本帖最後由 tonyh 於 2019-3-2 10:19 編輯

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

  51. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int sum=0;
  7.     int x,y;
  8.     string s[]={"珍珠奶茶","茉莉綠茶","泡沫紅茶","菊花茶","多多綠茶","梅子可樂","檸檬愛玉"};
  9.     int m[]={50,35,20,30,35,25,45};
  10.     cout<<"☆★☆清薪飲料店☆★☆"<<endl<<endl;
  11.     cout<<"[商品價目表]"<<endl;
  12.     for(int i=0;i<7;i++)
  13.     {
  14.             cout<<"("<<i+1<<")"<<s[i]<<"\t"<<m[i]<<"元"<<endl;
  15.     }
  16.     cout<<"(8)結帳"<<endl<<endl;
  17.     while(true)
  18.     {
  19.     cout<<"請輸入商品代碼: ";
  20.     cin>>x;
  21.     if(x==8)
  22.       break;
  23.     cout<<"數量: ";
  24.     cin>>y;
  25.     sum+=m[x-1]*y;                       
  26.     }
  27.     cout<<endl<<"共"<<sum<<"元!"<<endl;                        
  28.     system("pause");
  29.     return 0;   
  30. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum=0;
  7.     int code,qty;
  8.     string name[]={"齊爾 爆焰龍捲","卡莉 聖域福音","悟空 合金進化","夜叉 戰地之王","瑟斐斯 煉獄修羅","柯里納卡 荒漠邪翅","馬洛斯 鋼鐵戰線"};
  9.     int price[]={450,550,325,200,660,150,150,380};
  10.     cout<<"☆★☆傳說對決造型專賣店☆★☆"<<endl<<endl;
  11.     cout<<"[商品價目表]"<<endl;
  12.     for(int i=0;i<7;i++)
  13.     {
  14.     cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  15.     }
  16.     cout<<"(8)結帳"<<endl<<endl;
  17.     while(true)
  18.     {
  19.         cout<<"請輸入商品代碼:";
  20.         cin>>code;
  21.         if(code==8)
  22.         break;
  23.         cout<<"數量:";
  24.         cin>>qty;
  25.         sum+=price[code-1]*qty;               
  26.     }
  27.     cout<<endl<<"總共"<<sum<<"元"<<endl;
  28.      
  29.     system("pause");
  30.     return 0;
  31. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int z,f,sum=0;
  7.    
  8.     string x[]={"菠蘿麵包   ","小餐包(六入)  ","巧克力熱壓吐司","紅豆麵包   ","桂圓麵包   ","培根玉米三明治","北歐圓法(四入)"};
  9.     int y[]={35,50,45,30,55,65,45};

  10.     cout<<"左營可口麵包店"<<endl<<endl;
  11.     cout<<"{麵包價目表]"<<endl;
  12.    
  13.      for(int i=0;i<7;i++)
  14.     {
  15.         cout<<"("<<i+1<<")"<<x[i]<<"\t"<<y[i]<<"元"<<endl;
  16.     }
  17.     cout<<"(8)結帳"<<endl<<endl;
  18.     while(true)
  19.     {
  20.         cout<<"請輸入商品代碼: ";
  21.         cin>>z;
  22.         if(z==8)
  23.           break;
  24.         cout<<"數量: ";
  25.         cin>>f;
  26.         sum+=y[z-1]*f;                    
  27.     }
  28.     cout<<endl<<"共"<<sum<<"元!"<<endl;
  29.     system("pause");
  30.     return 0;            
  31. }
複製代碼

TOP

返回列表