標題:
switch 判斷式 (一)
[打印本頁]
作者:
鄭又綸
時間:
2024-9-4 19:46
標題:
switch 判斷式 (一)
利用 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到主控台,告知該程式已成功執行
}
複製代碼
作者:
于雍平
時間:
2024-9-4 20:42
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2