C switch
Posted N神3
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C switch相关的知识,希望对你有一定的参考价值。
#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的主要内容,如果未能解决你的问题,请参考以下文章