菜单返回上一级,直接退出和擦屏功能的实现

返回上一级,直接退出和擦屏功能的实现

#include
#include
#include

int main()
{
	int choice1,choice2;
	
	while(1)
	{
	printf("1.进入下一级\n");
	printf("2.忽略\n");
	printf("3.退出\n");
	printf("请输入:\n");
	scanf("%d",&choice1);
	choice2=0;//****************b!=2!!
	system ("cls");//****************
    
	
		if(choice2==2)		//**************
			break;
		switch(choice1)
		{
		case 1:
			while(1)
			{
				printf("1.忽略\n");
				printf("2返回上一级\n");
				printf("3直接退出\n");
				scanf("%d",&choice2);
				system("cls");//*******************
			
			
				if(choice2==2)//**************2级菜单下的选择
				break;
				switch(choice2)
				{
				case 1: break;
				case 3:exit(0);
				}

			}
			
			break;
		case 2:break;
		case 3:exit(0);
		}
	
	}
    return 0;
}

菜单返回上一级,直接退出和擦屏功能的实现_第1张图片 菜单返回上一级,直接退出和擦屏功能的实现_第2张图片




你可能感兴趣的:(C/C++)