返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int a, b, 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.    cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  14.    cout<<"(8)結帳"<<endl<<endl;
  15.    re:
  16.    cout<<"輸入商品代碼:";
  17.    cin>>a;
  18.    if(a>=1 && a<=7)
  19.    {
  20.    cout<<"數量:";
  21.    cin>>b;
  22.    sum+=price[a-1]*b;
  23.    goto re;
  24.    }else if (a==8)
  25.        goto checkout;
  26.     else
  27.    {
  28.        cout<<"輸入錯誤!!!"<<endl;
  29.        goto re;
  30.    }
  31.     checkout:
  32.     cout<<endl<<"總共"<<sum<<"元"<<endl<<endl;
  33.     system("pause");
  34.     return 0;  
  35. }
複製代碼

TOP

返回列表