请教 迷宫的显示问题
学校里给的作业的第1步知道如何弄请教高手空为通路 用□显示
1为墙壁 用■显示
G为终点 用●显示
用下面的完成迷宫显示生成
#include <stdio.h>
#include "ConsoleCtrl.h"
const int MAP_SIZE = 10;
char* Map[ MAP_SIZE ] = { " "
, " 111 11 1 "
, " 1 1 "
, " 1111 1 11"
, " 1 "
, " 111 1 1 "
, " 1 11111"
, "11 1 "
, " 111 11 "
, "11 1G 1 " };
void ShowMap();
/*
///////////////////////////////////////////////////
main
///////////////////////////////////////////////////*/
void main()
{
ShowMap();
}
/*
///////////////////////////////////////////////////
ShowMap
///////////////////////////////////////////////////
void ShowMap()
{
}