返回列表 發帖
  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

返回列表