简单的迷宫游戏:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace lianxi2
{
class Program
{
static int[,] map = new int[20, 20]{
{2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2},
{2,2,0,2,2,2,2,2,0,2,0,2,2,0,0,0,0,0,2,2},
{2,2,0,0,0,2,2,2,0,2,0,2,2,0,2,0,2,0,2,2},
{2,2,2,2,0,2,2,0,0,0,0,2,2,0,0,2,2,0,2,2},
{2,2,2,2,0,2,2,0,2,2,0,0,0,0,2,0,0,2,2,2},
{2,2,0,0,0,2,2,0,2,0,0,2,0,0,2,2,0,2,2,2},
{2,2,0,2,2,2,2,0,2,0,2,2,0,2,2,0,2,2,2,2},
{2,2,0,0,0,0,0,0,2,0,2,2,0,0,2,2,0,0,0,0},
{2,2,2,2,0,2,2,2,2,0,2,2,2,2,2,2,0,2,0,2},
{2,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,2},
{2,2,0,2,2,2,0,2,2,2,2,0,2,2,2,2,2,0,2,2},
{2,2,0,2,2,2,0,0,0,0,0,0,2,2,2,0,2,0,2,2},
{2,2,0,2,2,2,0,2,2,0,2,2,2,0,2,2,0,2,2,2},