You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stdio.h>
|
|
int main()
|
|
|
|
{int N;
|
|
printf("欢迎 \n ");
|
|
printf(" 1.进入主菜单\n");
|
|
printf(" 2.退出程序\n");
|
|
printf("请选择;");
|
|
scanf("%d",&N);//这里调用主菜单函数
|
|
if(N==1)
|
|
printf("1");
|
|
else
|
|
return 0;
|
|
|
|
}
|
|
|