master
unknown 6 years ago
parent f10be4b679
commit eba05028ec

@ -108,3 +108,15 @@ scanf("%d",&n);
if(n==1)
printf("请按任意键继续");
if(n==2)
bye();
}
int main()//主函数
{welcome();
help();
system("title C语言五子棋游戏课程设计 ——湖工大通一李得龙,黄智");//设置标题
system("mode con cols=504 lines=512");//设置窗口大小
system("color F0");//设置颜色
while(1){//循环执行游戏
RunGame();
}
}

@ -32,3 +32,6 @@ scanf("%d",&n);
if(n==1)
printf("请按任意键继续");
if(n==2)
if(n==2)
bye();
}

@ -0,0 +1,10 @@
int main()//主函数
{welcome();
help();
system("title C语言五子棋游戏课程设计 ——湖工大通一李得龙,黄智");//设置标题
system("mode con cols=504 lines=512");//设置窗口大小
system("color F0");//设置颜色
while(1){//循环执行游戏
RunGame();
}
}
Loading…
Cancel
Save