#include <stdio.h>
int main()
{
	int x = 3;
	int y = 3;
	switch (x % 2)//3%2=1,所以执行case 1
	{
	case 1:
		switch (y)//y=3
		{
		case 0://不执行
			printf("first");
		case 1://不执行
			printf("second");
		default://前两种情况不执行,就执行该代码,且因为内部的switch语句执行后并没有break语句来跳出外部的switch语句,所以继续执行外部switch语句的case 2
			printf("hello");
		}
	case 2:
		printf("third");
	}
	return 0;