码迷,mamicode.com
首页 > 其他好文 > 详细

C switch

时间:2017-03-02 16:43:53      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:执行   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满足条件后,继续从满足条件处继续往下执行。

C switch

标签:执行   std   print   stdio.h   ase   case   bsp   条件   nbsp   

原文地址:http://www.cnblogs.com/chenweichu/p/6490926.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!