简单复习一下c语言中的走迷宫小任务(真的很简单,还没有弄亿点修饰):比如说地图弄大点啊,隐藏宝箱啊,如果你走错路狠狠的嘲笑你啊,你如果通关了也要。。。
#include<stdio.h>
#define ROWS 6
#define COLS 8
int x = 1;
int y = 1;
char dir = '0';
//创建一个地图
char map[ROWS][COLS] =
{
{'#', '#', '#', '#', '#', '#', '#', '#'},
{'#', '0', '#', '#', ' ', ' ', ' ', ' '},
{'#', ' ', ' ', '#', ' ', '#', '#', '#'},
{'#', '#', ' ', '#', ' ', '#', ' ', '#'},
{'#', '#', ' ', ' ', ' ', ' ', ' ', '#'},
{'#', '#', '#', '#', '#', '#', '#', '#'}
};
void mademap()//打印地图
{
for (int i = 0;i < 6;i++)
{
for (int j = 0;j < 8;j++)
{
printf("%c", map[i][j]);
}
printf("\n");
}
}
void goleft()
{
if (map[x][y -1] == ' ')//如果向左一个位置是空格则可以走
{
map[x][y] = ' ';//当前位置换成空格
y = y - 1;
map[x][y] = '0';//左边一个位置换成0
system("cls");
}
else
{
system("cls");
printf("此路不通,请重新开始。\n");
map[x][y] = ' ';
map[1][1] = '0';
x = 1;
y = 1;
}
}
void goright()
{
if (map[x][y + 1] == ' ')//如果向右一个位置是空格则可以走
{
map[x][y] = ' ';//当前位置换成空格
y = y + 1;
map[x][y] = '0';//右边一个位置换成0
system("cls");
}
else
{
system("cls");
printf("此路不通,请重新开始。\n");
map[x][y] = ' ';
map[1][1] = '0';
x = 1;
y = 1;
}
}
void goup()
{
if (map[x - 1][y] == ' ')//如果向上一个位置是空格则可以走
{
map[x][y] = ' ';//当前位置换成空格
x = x - 1;
map[x][y] = '0';//上边一个位置换成0
system("cls");
}
else
{
system("cls");
printf("此路不通,请重新开始。\n");
map[x][y] = ' ';
map[1][1] = '0';
x = 1;
y = 1;
}
}
void godown()
{
if (map[x+1][y] == ' ')//如果向下一个位置是空格则可以走
{
map[x][y] = ' ';//当前位置换成空格
x = x + 1;
map[x][y] = '0';//下边一个位置换成0
system("cls");
}
else
{
system("cls");
printf("此路不通,请重新开始。\n");
map[x][y] = ' ';
map[1][1] = '0';
x = 1;
y = 1;
}
}
void enterDirection()
{
printf("请输入小人的前进方向:w=上,s=下,a=左,d=右\n");
rewind(stdin);
scanf_s("%c", &dir);
}
int main(int argc,const char * argv[])
{
while (map[1][7] != '0')//循环
{
//地图
mademap();
//输入指令
enterDirection();
//判断条件
if (dir == 'A' || dir == 'a')
{
goleft();
}
else if (dir == 'S' || dir == 's')
{
godown();
}
else if (dir == 'D' || dir == 'd')
{
goright();
}
else if (dir == 'W' || dir == 'w')
{
goup();
}
}
}
我是用Visual Studio 2019运行程序的,电脑是window10,所以scanf_s会报警告但是不影响。