本文实例为大家分享了C++实现迷宫游戏的具体代码,供大家参考,具体内容如下
//文件的输入,有墙
#include
#include
#include
#include
using namespace std;
const int max1=100*100; //加入墙
const int max2=102;
bool value[max2][max2]; //记录是否被访问过
int maze[max2][max2]; //迷宫的大小
int n,m; //输入迷宫的长和宽
ofstream outfi
2021-12-15 20:26:39
48KB
迷宫
1