From 3014110ff26063ff82f15964cd72a12c540c6c38 Mon Sep 17 00:00:00 2001 From: misarablewq Date: Wed, 20 Nov 2024 20:01:20 +0400 Subject: [PATCH] commit1 --- main1.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 main1.c diff --git a/main1.c b/main1.c new file mode 100644 index 0000000..169f5d8 --- /dev/null +++ b/main1.c @@ -0,0 +1,13 @@ +int map[N][M] = { + {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, + {0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0}, + {0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0}, + {0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0}, + {0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 3, 0, 0, 0}, + + {0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0}, + {0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 2, 0}, + {0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0}, + {0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0}, + {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} +}; \ No newline at end of file