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.

11 lines
239 B

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