;
printf("\n********************************************************************************");
printf("\n****1、成绩录入****2、数据浏览****3、数据查询****4、数据统计****5、 成绩排序****");
printf("\n****6、数据保存****7、数据修改****8、数据删除****9、系统简介****10、退出系统****");
printf("\n********************************************************************************");
int i;
printf("请输入要进入的菜单号:");
scanf("%d",&i);
printf("\n");
switch(i)
{
case 1:input();goto a;
case 2:watch();goto a;
/*case 3:
case 4:
case 5:
case 6:
case 7:
case 8:
case 9:
case 10:*/
default:printf("无效输入!!\n");
}
} |