#include <iostream>
using namespace std;
int main(){
return 0;
}
全选Ctrl+a,复制Ctrl+c,粘贴Ctrl+v。
#include <iostream>
using namespace std;
int main(){
********
************
####....#.
#..###.....##....
###.......###### ### ### ### ###
........... #...# #...# #...# #...#
##*####### #.#.# #.#.# #.#.# #.#.#
####*******###### #.#.# #.#.# #.#.# #.#.#
...#***.****.*###.... #...# #...# #...# #...#
....**********##..... ### ### ### ###
....**** *****....
#### ####
###### ######
############################################################## ##################################
#...#......#.##...#......#.##...#......#.##------------------# #...#......#.##------------------#
###########################################------------------# ###############------------------#
#..#....#....##..#....#....##..#....#....##################### #..#....#....#####################
########################################## #----------# ############## #----------#
#.....#......##.....#......##.....#......# #----------# #.....#......# #----------#
########################################## #----------# ############## #----------#
#.#..#....#..##.#..#....#..##.#..#....#..# #----------# #.#..#....#..# #----------#
########################################## ############ ############## ############
return 0;
}
行首或字首Home,行尾或字尾End。
#include <iostream>
using namespace std;
int main(){
cout << " ********
cout << " ************
cout << " ####....#.
cout << " #..###.....##....
cout << " ###.......###### ### ### ### ###
cout << " ........... #...# #...# #...# #...#
cout << " ##*####### #.#.# #.#.# #.#.# #.#.#
cout << " ####*******###### #.#.# #.#.# #.#.# #.#.#
cout << " ...#***.****.*###.... #...# #...# #...# #...#
cout << " ....**********##..... ### ### ### ###
cout << " ....**** *****....
cout << " #### ####
cout << " ###### ######
cout << "############################################################## ##################################
cout << "#...#......#.##...#......#.##...#......#.##------------------# #...#......#.##------------------#
cout << "###########################################------------------# ###############------------------#
cout << "#..#....#....##..#....#....##..#....#....##################### #..#....#....#####################
cout << "########################################## #----------# ############## #----------#
cout << "#.....#......##.....#......##.....#......# #----------# #.....#......# #----------#
cout << "########################################## #----------# ############## #----------#
cout << "#.#..#....#..##.#..#....#..##.#..#....#..# #----------# #.#..#....#..# #----------#
cout << "########################################## ############ ############## ############
return 0;
}
#include <iostream>
using namespace std;
int main(){
cout << " ********" << endl;
cout << " ************" << endl;
cout << " ####....#." << endl;
cout << " #..###.....##...." << endl;
cout << " ###.......###### ### ### ### ###" << endl;
cout << " ........... #...# #...# #...# #...#" << endl;
cout << " ##*####### #.#.# #.#.# #.#.# #.#.#" << endl;
cout << " ####*******###### #.#.# #.#.# #.#.# #.#.#" << endl;
cout << " ...#***.****.*###.... #...# #...# #...# #...#" << endl;
cout << " ....**********##..... ### ### ### ###" << endl;
cout << " ....**** *****...." << endl;
cout << " #### ####" << endl;
cout << " ###### ######" << endl;
cout << "############################################################## ##################################" << endl;
cout << "#...#......#.##...#......#.##...#......#.##------------------# #...#......#.##------------------#" << endl;
cout << "###########################################------------------# ###############------------------#" << endl;
cout << "#..#....#....##..#....#....##..#....#....##################### #..#....#....#####################" << endl;
cout << "########################################## #----------# ############## #----------#" << endl;
cout << "#.....#......##.....#......##.....#......# #----------# #.....#......# #----------#" << endl;
cout << "########################################## #----------# ############## #----------#" << endl;
cout << "#.#..#....#..##.#..#....#..##.#..#....#..# #----------# #.#..#....#..# #----------#" << endl;
cout << "########################################## ############ ############## ############" << endl;
return 0;
}