switch函数的小问题
#include<stdio.h>int main()
{
int x=1,y=0,a=0,b=0;
switch(x)
{
case 1:switch(y)
{
case 0:a++;break; 是不是执行完这一步就跳出这个switch(y)
case 1:b++;break;
}
case 2:a++,b++;break; 然后再执行一下这行代码,就结束呢?是不是不需要再次考虑case 2了?
case 3:a++,b++;break;
}
printf("a=%d,b=%d\n",a,b);
}
答案是a=2,b=1。