利用 switch 判斷式,完成如下之練習:
- #include<stdio.h> //引入 <基本輸入輸出> 標頭檔 input & output stream
- #include<stdlib.h> //引入 <標準函式庫> 標頭檔 因用到了syatem("pause");
- int main() //主函式
- {
- int opt;
- re:
- printf("請輸入您要買的飲料(1.紅茶 2.咖啡 3.牛奶):");
- scanf("%d",&opt);
- switch(opt)//根據opt來做判斷
- {
- //情況-case 如果opt為1
- case 1:
- printf("您點的是紅茶!\n");
- break;
- case 2:
- printf("您點的是咖啡!\n");
- break;
- case 3:
- printf("您點的是牛奶!\n");
- break;
- default://預設值
- printf("輸入錯誤!\n");
- }
- goto re;
- system("pause"); //讓畫面暫停
- return 0; //回傳0到主控台,告知該程式已成功執行
- }
複製代碼 |