上传者: 38737144
|
上传时间: 2021-12-15 20:26:39
|
文件大小: 48KB
|
文件类型: -
本文实例为大家分享了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