#include <stdio.h> int map[11][11];//地图 int n, m; //地图规模 int trace[101][2];//记录路径 //允许的方向 int dx[4] = {0, 0, 1, -1}; int dy[4] = {1, -1, 0, 0}; void dfs(int x, int y, int cnt) { //cnt指走了几步路 if (map[n - 1][m - 1] == 2) { for (int i = 0; i < cnt; i++) { printf("...