-
Notifications
You must be signed in to change notification settings - Fork 0
/
branchStatement-switch.c
78 lines (76 loc) · 1.22 KB
/
branchStatement-switch.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include <stdio.h>
int main_22()
{
// int day=0;
// scanf("%d",&day);
// switch (day)
// {
// case 1:
// printf("Monday\n");
// break;
// case 2:
// printf("Tuesday\n");
// break;
// case 3:
// printf("Wednesday\n");
// break;
// case 4:
// printf("Thursday\n");
// break;
// case 5:
// printf("Friday\n");
// break;
// case 6:
// printf("Saturday\n");
// break;
// case 7:
// printf("Sunday\n");
// break;
// default:
// printf("error");
// break;
// }
// switch (day)
// {
// case 1:
// case 2:
// case 3:
// case 4:
// case 5:
// printf("Workday\n");
// break;
// case 6:
// case 7:
// printf("Weekend\n");
// break;
// default:
// printf("error");
// break;
// }
int n=1;
int m=2;
switch (n)
{
case 1:
m++;//m=3
case 2:
n++;//n=2
case 3:
switch (n)
{
case 1:
n++;
case 2:
m++;//m=4
n++;//n=3
break;
}
case 4:
m++;//m=5
break;
default:
break;
}
printf("m=%d,n=%d\n",m,n);//m=5,n=3
return 0;
}