本帖最後由 葉桔良 於 2022-1-15 17:31 編輯
利用 switch 判斷式,完成如下之練習:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int option; //drink
- cout<<"請輸入您要買的飲料(1.咖啡 2.牛奶 3.紅茶)"<<endl;
- cin>>option;
-
- switch(option) // switch(變數)
- {
- case 1: // case (變數的值): <<後面記得加冒號
- cout<<"您點的是咖啡"<<endl;
- break; // 記得每個case裡面都要加 break;
- case 2:
- cout<<"您點的是牛奶"<<endl;
- break;
- case 3:
- cout<<"您點的是紅茶"<<endl;
- break;
- default:
- cout<<"輸入錯誤"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int option; //drink
- cout<<"input:";
- cin>>option;
-
- switch(option) // switch(變數)
- {
- //if(option >=1 && option <=3 )
- case 1 ... 3: // case (變數的值): <<後面記得加冒號
- cout<<"1~3"<<endl;
- break; // 記得每個case裡面都要加 break;
- case 4 ... 7:
- cout<<"4~7"<<endl;
- break;
- case 8 ... 10:
- cout<<"8~10"<<endl;
- break;
- }
-
-
- system("pause");
- return 0;
- }
複製代碼 |