Board logo

標題: 購物系統 (二) [打印本頁]

作者: tonyh    時間: 2015-3-14 10:28     標題: 購物系統 (二)

本帖最後由 tonyh 於 2015-3-14 11:57 編輯

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

[attach]1168[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int p,q,sum=0;
  7.     string name[7]={"遙控汽車","飛機模型","足球  ",
  8.                    "拼圖  ","玩具槍","可愛玩偶","籃球  "};
  9.     int price[7]={450,550,325,200,660,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.     re:
  18.     cout<<"請輸入商品代碼: ";
  19.     cin>>p;
  20.     if(p==8)
  21.         goto checkout;
  22.     else if(p>=1 && p<=7)
  23.     {
  24.         cout<<"數量: ";
  25.         cin>>q;
  26.         if(q<=0)
  27.         {
  28.             cout<<"輸入錯誤!"<<endl;
  29.             goto re;        
  30.         }
  31.         sum+=price[p-1]*q;     
  32.     }
  33.     else
  34.     {
  35.         cout<<"輸入錯誤!"<<endl;   
  36.     }
  37.     goto re;
  38.     checkout:
  39.     cout<<endl<<"總共"<<sum<<"元!"<<endl;
  40.     system("pause");
  41.     return 0;   
  42. }
複製代碼

作者: 洪振庭    時間: 2015-3-14 11:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int p,q,sum=0;
  7.     string name[7]={"速效跳課糖","米你毛毛球","無頭帽","金斯雀奶油","攜帶型沼澤","假魔杖","伸縮耳"};
  8.     int price[7]={90,150,74,3,80,1,4};
  9.     cout<<"****衛氏巫師法寶店****"<<endl;
  10.     cout<<"<=商品價目表=>"<<endl;
  11.    
  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.     re:

  18.     cout<<"請輸入商品代碼: ";

  19.     cin>>p;

  20.     if(p==8)

  21.         goto checkout;

  22.     else if(p>=1 && p<=7)

  23.     {

  24.         cout<<"數量: ";

  25.         cin>>q;

  26.         if(q<=0)

  27.         {

  28.             cout<<"輸入錯誤!"<<endl;

  29.             goto re;        

  30.         }

  31.         sum+=price[p-1]*q;     

  32.     }

  33.     else

  34.     {

  35.         cout<<"輸入錯誤!"<<endl;   

  36.     }

  37.     goto re;

  38.     checkout:

  39.     cout<<endl<<"總共"<<sum<<"元!"<<endl;

  40.     system("pause");

  41.     return 0;   

  42. }
複製代碼

作者: 李大全    時間: 2015-3-14 12:01

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int p,q,sum=0;
  7.     string name[7]={"3","5","6  ",
  8.                    "2  ","1","手機","按摩棒  "};
  9.     int price[7]={45,55,35,20,22,22000,380};
  10.     cout<<"a"<<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.     re:
  18.     cout<<"請輸入商品代碼: ";
  19.     cin>>p;
  20.     if(p==8)
  21.         goto checkout;
  22.     else if(p>=1 && p<=7)
  23.     {
  24.         cout<<"數量: ";
  25.         cin>>q;
  26.         if(q<=0)
  27.         {
  28.             cout<<"輸入錯誤!"<<endl;
  29.             goto re;        
  30.         }
  31.         sum+=price[p-1]*q;     
  32.     }
  33.     else
  34.     {
  35.         cout<<"輸入錯誤!"<<endl;   
  36.     }
  37.     goto re;
  38.     checkout:
  39.     cout<<endl<<"總共"<<sum<<"元!"<<endl;
  40.     system("pause");
  41.     return 0;   
  42. }
複製代碼

作者: 李知易    時間: 2015-3-14 12:08

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int p,q,sum=0;
  7.     string name[5]={"砍頭優惠卷","特效搖頭丸","自殺體驗卷","被打免費票","舒柔鼻涕蟲",};
  8.     int price[5]={99111,458645,14000,99999,100000};
  9.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  10.     cout<<"[商品價目表]"<<endl;
  11.     for(int i=0; i<5; i++)
  12.     {
  13.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  14.     }
  15.     cout<<"(8)結帳"<<endl<<endl;
  16.     re:
  17.     cout<<"請輸入商品代碼: ";
  18.     cin>>p;
  19.     if(p==8)
  20.         goto checkout;
  21.     else if(p>=1 && p<=7)
  22.     {
  23.         cout<<"數量: ";
  24.         cin>>q;
  25.         if(q<=0)
  26.         {
  27.             cout<<"輸入錯誤!"<<endl;
  28.             goto re;        
  29.         }
  30.         sum+=price[p-1]*q;     
  31.     }
  32.     else
  33.     {
  34.         cout<<"輸入錯誤!"<<endl;   
  35.     }
  36.     goto re;
  37.     checkout:
  38.     cout<<endl<<"總共"<<sum<<"元!"<<endl;
  39.     system("pause");
  40.     return 0;   
  41. }
複製代碼

作者: 梁和雋    時間: 2015-3-14 12:08

本帖最後由 梁和雋 於 2015-3-21 11:12 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int p,q,sum=0;
  7.     string name[5]={"CAD   ","NERvGear","蘿球   ","零時迷子","吉太    "};
  8.     int price[5]={10000,20000,20000,10000,10000};
  9.     cout<<"<?<?<?<<動漫道具店>>?>?>?>"<<endl;
  10.     cout<<"<?<?<?<<商品價目表>>?>?>?>"<<endl;
  11.     for(int i=0; i<5; i++)
  12.     {
  13.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  14.     }  
  15.     cout<<"(6)結帳"<<endl<<endl;
  16.     re:
  17.     cout<<"請輸入商品代碼: ";
  18.     cin>>p;
  19.     if(p==6)
  20.         goto checkout;
  21.     else if(p>=1 && p<=5)
  22.     {
  23.         cout<<"數量: ";
  24.         cin>>q;
  25.         if(q<=0)
  26.         {
  27.             cout<<"輸入錯誤!"<<endl;
  28.             goto re;        
  29.         }
  30.         sum+=price[p-1]*q;     
  31.     }
  32.     else
  33.     {
  34.         cout<<"輸入錯誤!"<<endl;   
  35.     }
  36.     goto re;
  37.     checkout:
  38.     cout<<endl<<"總共"<<sum<<"元!"<<endl;
  39.     system("pause");
  40.     return 0;   
  41. }
複製代碼

作者: 謝瀞儀    時間: 2015-3-14 14:04

本帖最後由 謝瀞儀 於 2015-3-14 14:27 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int thing, number,sum=0;
  7.     string name[21]={"V家七宗罪系列(包含序號2~9)","湯匙(齒輪)            ",
  8.                    "酒杯                   ",
  9.                    "劍                     ",
  10.                    "金鑰匙                 ",
  11.                    "人偶                   ",
  12.                    "四面鏡                 ",
  13.                    "禍世之剪               ",
  14.                    "上了發條的搖籃曲        ",
  15.                    "白癡藥水            ",
  16.                    "生鏽的齒輪人偶         ",
  17.                    "受詛咒之雙刃(附皮革套)",
  18.                    "跳針的古老大鐘         ",
  19.                    "失憶藥丸            ",
  20.                    "座敷童子的靈棺         ",
  21.                    "淌血的附喪神人偶       ",
  22.                    "會咬人的蜘蛛玩偶       ",
  23.                    "梅杜莎的頭顱          ",
  24.                    "巫婆熬藥的大鍋         ",
  25.                    "活生生殭屍殺人魔/吸血鬼    "};
  26.     long money[21]={1200,70,80,80,100,120,150,100,350,
  27.                     70,80,20,1300,130,700,130,120,500,1000,10000};
  28.     cout<<"XXX崩壞/中二玩具精品店XXX"<<endl;
  29.     cout<<"這裡的壞掉商品包山包海,應有盡有,等你來搜刮!"<<endl;
  30.     cout<<"本店絕對沒有惡意哄抬價格,也絕對沒有低價購入,高價賣出的不良嗜好,敬請安心"<<endl;
  31.     cout<<"對於購買商品的問題,出事本店一概不負責"<<endl;
  32.     cout<<"--------------------------------------------------------------------------"<<endl;
  33.     int i=0;
  34.     while(i<20)
  35.     {
  36.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<money[i]<<"萬元"<<endl;   
  37.         i++;
  38.     }
  39.     cout<<"(21)結帳"<<endl;
  40.     re:
  41.     cout<<"請輸入商品代號: "<<endl;
  42.     cin>>thing;
  43.     if(thing==21)
  44.     {
  45.         goto checkout;            
  46.     }
  47.     else if(thing>0 && thing<21)
  48.     {
  49.         cout<<"數量: "<<endl;
  50.         cin>>number;
  51.         if(number<=0)
  52.         {
  53.             cout<<"奧客去死辣!本店將會詛咒你的餘生(甩門)"<<endl;
  54.             goto re;        
  55.         }
  56.         sum+=money[thing-1]*number;
  57.         
  58.     }
  59.     else
  60.     {
  61.         cout<<"奧客去死辣!本店將會詛咒你的餘生(甩門)"<<endl;   
  62.     }
  63.     goto re;
  64.     checkout:
  65.    
  66.     cout<<"共"<<sum<<"萬元"<<endl;
  67.     system("pause");
  68.     return 0;   
  69. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2