-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP1000.cpp
36 lines (34 loc) · 1.53 KB
/
P1000.cpp
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
#include <iostream>
#include <string>
using namespace std;
int main()
{
string mario[] = {
" ********",
" ************",
" ####....#.",
" #..###.....##....",
" ###.......###### ### ###",
" ........... #...# #...#",
" ##*####### #.#.# #.#.#",
" ####*******###### #.#.# #.#.#",
" ...#***.****.*###.... #...# #...#",
" ....**********##..... ### ###",
" ....**** *****....",
" #### ####",
" ###### ######",
"##############################################################",
"#...#......#.##...#......#.##...#......#.##------------------#",
"###########################################------------------#",
"#..#....#....##..#....#....##..#....#....#####################",
"########################################## #----------#",
"#.....#......##.....#......##.....#......# #----------#",
"########################################## #----------#",
"#.#..#....#..##.#..#....#..##.#..#....#..# #----------#",
"########################################## ############"};
for (int i = 0; i < 22; i++)
{
cout << mario[i] << endl;
}
return 0;
}