1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
#include <iostream>
#include <windows.h>
#include <string>
int main();
{
char wall = 177;
char Map[14][40] = { "#######################################",
"#.....................................#",
"#......#######........................#",
"#......#######........................#",
"#......#######........................#",
"#......###.###........................#",
"#.....................................#",
"#.......................###.###.......#",
"#.......................#######.......#",
"#.......................#######.......#",
"#.......................#######.......#",
"#.@...................................#",
"#######################################" };
for (int i = 0; i < 14; ++i)
{
for (int j = 0; j < 40; ++j)
{
if (Map[i][j] == '@')
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 11);
cout << Map[i][j];
}
if (Map[i][j] == '#')
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 12);
cout << wall;
}
else
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 8);
cout << Map[i][j];
}
}
cout << endl;
}
return 0;
}
|