//设计一个迷宫地图
#include <iostream>
#include <math.h>
#include <unistd.h>
#include <stdlib.h>
#include <adapter.week-two.h>
using namespace std;
int main()
{
char map[6][6]=
{
{
'#','#','#','#','#','#'},
{
'#','O',' ','#',' ',' '},
{
'#',' ','#','#',' ','#'},