返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         string name[7]={"遙控器車","飛機模型","足球    ","拼圖    ","玩具槍","可愛玩偶","籃球    "};
  7.         int dollar[7]={450,550,325,200,660,150,300};
  8.         int x ,z ,s=0;
  9.         cout<<"[商品名稱]"<<endl;
  10.         for(int i=0; i<7; i++)
  11.         {
  12.                 cout<<"("<<i+1<<")"<<name[i]<<"\t"<<dollar[i]<<"元"<<endl;
  13.         }
  14.         cout<<"(8)結帳"<<endl<<endl;
  15.         re:
  16.         cout<<"請輸入商品代碼:";
  17.         cin>>x;
  18.         if(x>=1 && x<=7)
  19.         {
  20.                 cout<<"請輸入商品數量:";
  21.                 cin>>z;
  22.                 s+=dollar[x-1]*z;
  23.                  goto re;
  24.         }else if(x==8)
  25.         {
  26.                cout<<"總共"<<s<<"元!!!"<<endl;
  27.         }else
  28.         {
  29.              cout<<"輸入錯誤!"<<endl;
  30.              goto re;
  31.          }
  32.         system("pause");
  33.         return 0;
  34. }
複製代碼

TOP

返回列表