C语言是一种结构化语言,它有着清晰的层次,可按照模块的方式对程序进行编写,十分有利于程序的调试,且c语言的处理和表现能力都非常的强大,依靠非常全面的运算符和多样的数据类型,可以轻易完成各种数据结构的构建,通过指针类型更可对内存直接寻址以及对硬件进行直接操作,因此既能够用于开发系统程序,也可用于开发应用软件。
C语言中的switch
语句用于从多个条件执行代码。 就像if else-if
语句一样。
C语言中switch
语句的语法如下:
switch(expression){
case value1:
//code to be executed;
break; //optional
case value2:
//code to be executed;
break; //optional
......
default:
code to be executed if all cases are not matched;
}
C语言中switch
语句的规则如下 -
switch
表达式必须是整数或字符类型。case
值必须是整数或字符常量。case
值只能在switch
语句中使用。switch case
中的break
语句不是必须的。这是一个可选项。 如果在switch case
中没有使用break
语句,则匹配case
值后将执行所有后的语句。它被称为通过C语言switch
语句的状态。我们试着通过例子来理解它。假设有以下变量及赋值。
int x,y,z;
char a,b;
float f;
有效的Switch | 无效的Switch | 有效的Case | 无效的Case |
---|---|---|---|
switch(x) | switch(f) | case 3; | case 2.5; |
switch(x>y) | switch(x+2.5) | case ‘a’; | case x; |
switch(a+b-2) | case 1+2; | case x+2; | |
switch(func(x,y)) | case ‘x’>’y’; | case 1,2,3; |
C语言中的switch
语句的流程图 -
我们来看一个简单的C语言switch
语句示例。创建一个源文件:switch-statment.c,其代码如下 -
#include
#include
void main() {
int number = 0;
printf("Enter a number:");
scanf("%d", &number);
switch (number) {
case 10:
printf("number is equals to 10\\n");
break;
case 50:
printf("number is equal to 50\\n");
break;
case 100:
printf("number is equal to 100\\n");
break;
default:
printf("number is not equal to 10, 50 or 100\\n");
}
}
执行上面示例代码,得到以下结果 -
Enter a number:88
number is not equal to 10, 50 or 100
执行第二次,结果如下 -
Enter a number:50
number is equal to 50
请按任意键继续. . .
switch语句直通到尾
在C语言中,switch
语句是通过的,这意味着如果在switch case
中不使用break
语句,则匹配某个case
之后的所有的case
都将被执行。
我们来试试通过下面的例子来了解switch
语句的状态。创建一个源文件:switch-fall-through.c,其代码如下所示 -
#include
#include
void main() {
int number = 0;
printf("enter a number:");
scanf("%d", &number);
switch (number) {
case 10:
printf("number is equals to 10\\n");
case 50:
printf("number is equal to 50\\n");
case 100:
printf("number is equal to 100\\n");
default:
printf("number is not equal to 10, 50 or 100\\n");
}
}
执行上面示例代码,得到以下结果 -
enter a number:10
number is equals to 10
number is equal to 50
number is equal to 100
number is not equal to 10, 50 or 100
请按任意键继续. . .
从上面的输出结果中,可以清楚地看到,当匹配 number = 10 之后,由于没有
break
语句,其它后面的语句也打印执行了。C语言的运算非常灵活,功能十分丰富,运算种类远多于其它程序设计语言。在表达式方面较其它程序语言更为简洁,如自加、自减、逗号运算和三目运算使表达式更为简单,但初学者往往会觉的这种表达式难读,关键原因就是对运算符和运算顺序理解不透不全。当多种不同运算组成一个运算表达式,即一个运算式中出现多种运算符时,运算的优先顺序和结合规则就会显得十分重要。课课家作为终身学习的倡导者,提供免费在线教育平台,旨在为企业工作者、在校学生、家庭人员提供全面的学习内容,提高自身素质,涵盖:技能培训:IT/互联网、语言学习、编程语言、网页设计、大数据,人工智能、云计算、考试认证等等。
上一篇:对于C语言循环语句是怎样的?
下一篇:编程语言的Istio分层架构
¥299.00
¥399.00
¥29.00
¥498.00