Presentation is loading. Please wait.

Presentation is loading. Please wait.

適用於多選一 可減少if 與 else配對混淆的錯誤.

Similar presentations


Presentation on theme: "適用於多選一 可減少if 與 else配對混淆的錯誤."— Presentation transcript:

1 適用於多選一 可減少if 與 else配對混淆的錯誤.
多重選擇---switch 適用於多選一 可減少if 與 else配對混淆的錯誤.

2 switch 敘述(switch statement)
根據括號內運算式的結果,來找case後面的選擇值 switch ( 運算式 ) { case 選擇值 1: 敘述主體1; break; …….. case 選擇值 n: 敘述主體n; default : /*若運算式的結果不等於1~n,就執行此部份*/ 敘述主體; } 有無break的差異

3 Switch簡略流程圖 expr 選擇值1 敘述主體1 break 選擇值2 敘述主體2 選擇值n 敘述主體n default 敘述主體 …
其它敘述

4 Example 1 程式碼(數學運算) printf("you type a non-standard expression!!\n");
#include<stdio.h> #include<stdlib.h> int main(void) { int a,b,output; char oper; printf("please input a expression(like 3+2):"); scanf("%d %c %d",&a,&oper,&b); switch(oper) case '+': output=a+b; break; /*計算a+b*/ case '-': output=a-b; break; /*計算a-b*/ case '*': output=a*b; break; /*計算a*b*/ case '/': output=a/b; break; /*計算a/b*/ default: printf("you type a non-standard expression!!\n"); } printf("the calculated result:%d\n",output); system(“pause"); return 0;

5 Example 1 流程圖 * / + - 開始 輸入運算式 oper default a/b a+b a-b a*b 非標準的 運算式
break - a-b / a/b default * a*b oper 輸入運算式 開始 輸出運算結果 結束 非標準的 運算式

6 switch 敘述(不加break) ----範例 1
若將此”break;”拿掉,試試看輸入b會有什麼結果 #include<stdio.h> int main(void) { char grade; printf("Input grade : "); scanf("%c", &grade); switch (grade) /*檢查 grade 值,做多重選擇*/ case 'a': case 'A': printf("Excellent!\n"); break; /*輸入a或A時*/ case 'b': case 'B': printf("Good!\n"); break; /*輸入b或B時*/ case 'c': case 'C': printf("Be study hard!\n"); break; /*輸入c或C時*/ default: printf("Failed\n"); /*輸入其他字元時*/ } system("pause"); return 0; } Ch2_1_1.c

7 switch 敘述(switch statement)
範例2: 設電力公司的電費計算方式分成三類: 家庭用電:100度以下,每度2.5元;101~300度,每度3.3元; 301度(含)以上每度4.2元。 工業用電:其本費為每一契約馬力150元,實際用電費每度1.9元。 營業用電:0~300度,每度6元;301度(含)以上每度6.8元。 輸入用電類別及使用度數後,計算其應繳電費為何?

8 範例2流程圖

9 switch 敘述(switch statement) ---- 範例 2 程式碼(1):
#include<stdio.h> int main(void) { int T; /* 用電類別 */ float Deg; /* 用電度數 */ float C; /*工業用電契約馬力*/ float Fee; /* 電費 */ float TypeA1=2.5; float TypeA2=3.3; float TypeA3=4.2; float TypeB2=1.9; float TypeB1=150.0; float TypeC1=6.0; float TypeC2=6.8; printf("1. 家庭用電"); printf("\n"); printf("2. 工業用電"); printf("3. 營業用電"); printf("請輸入用電類別(1~3): "); scanf("%d", &T); if (T>=1 && T<=3) { printf("用電度數= "); scanf("%f", &Deg); Ch2_1_2.c

10 switch 敘述(switch statement) ---- 範例 2 程式碼(2):
case 3: if (Deg<=300) Fee = Deg*TypeC1; else Fee = (Deg-300)*TypeC *TypeC1; break; } printf("電費共為%f", Fee); printf("\n"); { printf("類別錯誤!"); system("pause"); return 0; switch(T) { case 1: if (Deg<=100) Fee = Deg*TypeA1; else if (Deg<=300) Fee = (Deg-100)*TypeA *TypeA1; else Fee = (Deg-300)*TypeA *TypeA *TypeA1; break; case 2: printf("契約馬力= "); scanf("%f", &C); Fee = C*TypeB Deg*TypeB2;


Download ppt "適用於多選一 可減少if 與 else配對混淆的錯誤."

Similar presentations


Ads by Google