加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.cpp 534 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jacko 提交于 2024-07-14 12:10 . gobang
#include "func.h"
#include "var.h"
//#include "image.h"
#include "ai.cpp"
int main(int argc, char **argv)
{
initgraph(1000, 800);
setcaption("五子棋");
setcolor(BLACK);
setrendermode(RENDER_MANUAL);
setfont(18, 0, "canosal");
setbkcolor(EGERGB(181, 131, 76));
getImage();
int op;
while (op = stwindow(), op)
{
prx = -100, pry = -100;
if (op == 1)
pvp();
else if (op == 2)
{
int op1 = choose();
if (op1 == 2)
pvc1();
else if (op1 == 1)
pvc();
}
}
delImage();
closegraph();
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化