天天看點

switch 分支語句的應用

switch 常用于多分支語句,用法為:

switch(整形表達式)

{

case語句(整形常量表達式);

}

下面我們使用代碼來助于大家了解。

#include<stdio.h>

#include<string.h>

int  main()

{

int  day=0;

scanf("%d",&day);

switch(day)

{

case  1:

case  2:

case  3:

case  4:

case  5:

printf("工作日\n");

break;

case  6:

case  7:

printf("休息日\n");

break;

default:

printf("輸入錯誤\n");

return  0;

}