[求助]大家看看如何解决?
#include "stdio.h"main()
{ int button;
INPUT:
printf("==========自动饮料机 ==========\n");
printf("1.可口可乐\n");
printf("2.雪碧\n");
printf("3.芬达\n");
printf("4.百事可乐\n");
printf("5.非常可乐\n");
printf("请按1--5键选择饮料:\n");
HLEP:
scanf("%d",&button);
switch(button)
{
case 0:break;
case 1:printf("\n你获得一听可口可乐\n重新6,退出0\n");break;
case 2:printf("\n你获得一听雪碧\n重新请6,退出0\n");break;
case 3:printf("\n你获得一听芬达\n重新6,退出0\n");break;
case 4:printf("\n你获得一听百事可乐\n重新6,退出0\n");break;
case 5:printf("\n你获得一听非常可乐\n重新6,退出0\n");break;
case 6:goto INPUT;
default:printf("\n非法操作!\n重新选择请输入6,退出0\n");break;
}
goto HLEP;
}
在最后一个部分,如果我想输入0之后退出程序(即出现 Press any key to....)
我应该怎么样修改我的这个程序? 谢谢.............