三九宝宝网宝宝教育计划总结

关于c语言的switch用法

12月23日 编辑 39baobao.com

[小班语言教案我有两双鞋]活动目的: 1、教师教幼儿学系鞋带的方法。 2、根据顺口溜“先绕一个圈,两头交叉绕一绕,拉拉紧”。 3、锻炼幼儿动手能力、生活自理能力。 活动准备: 1、《一双有蝴蝶结的鞋》故...+阅读

分析思路如下:

a=1

case 1 成立 【可是你没有打印语句啊!所以没有输出!】

如果这个case 有break的话,那面后面所有的case都不用看了。

case 2 成立 【但是你还是没有打印语句,所以没有显示】

case3 同样道理

default :中文意思是:默认的、缺省的意思。所以条件都不符合的时候要执行的。

示例代码:

#include "stdio.h"

#include "conio.h"

main()

{

int a=1;

switch(a)

{

case 1:

printf("case 1\n");

case 2:

printf("case 2\n");

case 3:

printf("case 3\n");

default: printf("defaule!");

}

getch();

}

结果:

case 1

case 2

case 3

defaule!

示例2 有break

#include "stdio.h"

#include "conio.h"

main()

{

int a=1;

switch(a)

{

case 1:

printf("case 1\n");

case 2:

printf("case 2\n");

break;

case 3:

printf("case 3\n");

default: printf("defaule!");

}

getch();

}

case 1

case 2

示例3 一个条件都不符合

#include "stdio.h"

#include "conio.h"

main()

{

int a=1;

switch(100)

{

case 1:

printf("case 1\n");

case 2:

printf("case 2\n");

break;

case 3:

printf("case 3\n");

default: printf("defaule!");

}

getch();

}

结果:

default!

以下为关联文档:

主语从句的用法主语从句可以按其引导词的不同分为三类: 第一类,用从属连词that引导的主语从句,例如: That we shall be late is certain. That the driver could not control his car was obvi...

主语从句连接词用法十万火急啊主语从句有以下连接词及其用法: 1. That That matter takes up space is known to all. (= It is known to all that matter takes up space.) 2. whether (if) Whether she...

如何促进和培养孩子的语言能力发展语言表达能力 要培养语言表达能力,最重要的是听和说,这其中倾听是首要条件,只有养成好的倾听习惯,才能为孩子更好地说话和表达打好基础。要把握好以下几点: 首先,家长要以身作则...

幼儿园语言教研组总结哪些方面一、教研活动日趋规范 1、规范体现在计划的制定上。根据我园教师的专业水平及园本情况,在开学初就制定了有针对性的、可行的教研计划,做到有目标、有措施、有组织,为教研活动的...

switch语句到底有哪些用法这样使用它switch语句 C语言还提供了另一种用于多分支选择的switch语句, 其一般形式为: switch(表达式){ case常量表达式1: 语句1; case常量表达式2: 语句2; … case常量表达式n: 语句n; defau...

switch用法switch 语句用法 功能:switch语句是多分支选择语句.用来实现多分支选择结构.if语句只有两个分支可供选择,而实际问题中常常要用到多分支的选择.例如,学生成绩分类(90为"A"等,80-89...

C语言switch的运用#include<stdio.h> void main() { int i; for(i=0;i<7;i++) { switch(i+1) { case 1: case 7:printf(" *\n");break; case 2: case 6:printf(" ***\n");break; case 3: case 5:p...

c语言 switch语句用法int i=?; switch(i) { case 1: System.out.println("one"); case 10: System.out.println("ten"); case 5: System.out.println("five"); case 3: System.out.println("three"); def...

c语言swich用法#include "stdio" main() { int a ; scanf("%d",&a); if(a>=0&a<=100) { switch(a/10) { case 10 case 9:printf("你的等级为:A"); break; case 8:printf("你的等级为:B");break; case 7:p...

推荐阅读
图文推荐