标签:执行 std print stdio.h ase case bsp 条件 nbsp
#include "stdio.h"
void main()
{
int i=1;
switch(i)
{
case 1:
printf("%d\n",1);
case 2:
printf("%d\n",2);
case 3:
printf("%d\n",3);
default:
printf("%d\n",4);
}
}
switch有break 和没有break的差别是,当case满足条件后,继续从满足条件处继续往下执行。
标签:执行 std print stdio.h ase case bsp 条件 nbsp
原文地址:http://www.cnblogs.com/chenweichu/p/6490926.html