代码如下:
#include<bits/stdc++.h>
using namespace std;
string a[1240]={
{" ********"},
{" ************"},
{" ####....#."},
{" #..###.....##...."},
{" ###.......###### ### ###"},
{" ........... #...# #...#"},
{" ##*####### #.#.# #.#.#"},
{" ####*******###### #.#.# #.#.#"},
{" ...#***.****.*###.... #...# #...#"},
{" ....**********##..... ### ###"},
{" ....**** *****...."},
{" #### ####"},
{" ###### ######"},
{"##############################################################"},
{"#...#......#.##...#......#.##...#......#.##------------------#"},
{"###########################################------------------#"},
{"#..#....#....##..#....#....##..#....#....#####################"},
{"########################################## #----------#"},
{"#.....#......##.....#......##.....#......# #----------#"},
{"########################################## #----------#"},
{"#.#..#....#..##.#..#....#..##.#..#....#..# #----------#"},
{"########################################## ############"},
};
int main(){
for(int i=0;i<22;i++){
cout<<a[i]<<endl;
}
}