本帖最後由 李泳霖 於 2023-10-21 14:15 編輯
新增 "請輸入商品代碼:" 與 "數量:" 的選項,
並於結帳時計算出總共多少錢,執行畫面如下圖所示。
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
-
- string s[7]={"遙控汽車","飛機模型","足球 ","拼圖 ","玩具槍","可愛玩具","籃球 " } ;
- int p[7]={450,550,325,200,660,150,380};
- int w,q,m=0;
- cout<<"玩具大清倉"<<endl<<endl;
- for(int i=0; i<7; i++)
- {
- cout<<"("<<i+1<<")"<<s[i]<<"\t"<<p[i]<<"元"<<endl;
- }
- cout<<"(8)結帳"<<endl;
- re:
- cout<<"請輸入商品代碼:";
- cin>>w;
- cout<<"數量";
- cin>>q;
- system("pause");
- return 0;
- }
複製代碼 |