返回列表 發帖

[6/15 作業3]switch購買飲料

本帖最後由 tonyh 於 2024-6-22 10:26 編輯

請使用switch
1.判斷使用者選擇的飲料、以及杯數
2.並輸出飲料的累積杯數、以及計算所花的錢。
3.觀看範例圖片
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     int t, q, a=0, b=0, c=0, sum=0;
  6.     re:
  7.     cout<<"輸入要購買的物品(1)珍奶45元(2)紅茶25元(3)綠茶30元: ";
  8.     cin>>t;
  9.     cout<<"要買幾杯: ";
  10.     cin>>q;
  11.     switch(t)
  12.     {
  13.         case 1:
  14.             a+=q;
  15.             sum+=45*q;
  16.             break;
  17.         case 2:
  18.             b+=q;
  19.             sum+=25*q;
  20.             break;
  21.         case 3:
  22.             c+=q;
  23.             sum+=30*q;
  24.             break;
  25.     }
  26.     cout<<"品項\t杯數"<<endl;
  27.     cout<<"--------------"<<endl;
  28.     cout<<"珍奶\t"<<a<<"杯"<<endl;
  29.     cout<<"紅茶\t"<<b<<"杯"<<endl;
  30.     cout<<"綠茶\t"<<c<<"杯"<<endl;
  31.     cout<<"--------------"<<endl;
  32.     cout<<"目前共"<<sum<<"元"<<endl<<endl;
  33.     goto re;
  34.     return 0;
  35. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
istak.teach2@gmail.com

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表