1. 程式人生 > >NOI-1.1-10-字符表示超級瑪麗

NOI-1.1-10-字符表示超級瑪麗

nbsp urn algorithm namespace blog using 字符 names ret

10:超級瑪麗遊戲

總時間限制:
1000ms
內存限制:
65536kB
描述

超級瑪麗是一個非常經典的遊戲。請你用字符畫的形式輸出超級瑪麗中的一個場景。

輸入
無。
輸出
如樣例所示。
樣例輸入
(無)
樣例輸出
                ********
               ************
               ####....#.
             #..###.....##....
             ###.......######              ###                 ###           ###           ###
                ...........               #...#               #...#         #...#         #...#
               ##*#######                 #.#.#               #.#.#         #.#.#         #.#.#
            ####*******######             #.#.#               #.#.#         #.#.#         #.#.#
           ...#***.****.*###....          #...#               #...#         #...#         #...#
           ....**********##.....           ###                 ###           ###           ###
           ....****    *****....
             ####        ####
           ######        ######
##############################################################              ##################################
#...#......#.##...#......#.##...#......#.##------------------#              #...#......#.##------------------#
###########################################------------------#              ###############------------------#
#..#....#....##..#....#....##..#....#....#####################              #..#....#....#####################
##########################################    #----------#                  ##############    #----------#
#.....#......##.....#......##.....#......#    #----------#                  #.....#......#    #----------#
##########################################    #----------#                  ##############    #----------#
#.#..#....#..##.#..#....#..##.#..#....#..#    #----------#                  #.#..#....#..#    #----------#
##########################################    ############                  ##############    ############
提示
必須嚴格按樣例輸出,每行的行尾不能有空格。
#include <iostream>
#include <algorithm>
#include <stdio.h>
#include <string>
#include <ctype.h>

using namespace std;

int main()  {
    cout << "                ********" << endl;
    cout << "               ************" << endl;
    cout 
<< " ####....#.\n" " #..###.....##....\n" " ###.......###### ### ### ### ###\n" " ........... #...# #...# #...# #...#\n
" " ##*####### #.#.# #.#.# #.#.# #.#.#\n" " ####*******###### #.#.# #.#.# #.#.# #.#.#\n" " ...#***.****.*###.... #...# #...# #...# #...#\n" " ....**********##..... ### ### ### ###\n" " ....**** *****....\n" " #### ####\n" " ###### ######\n" "############################################################## ##################################\n" "#...#......#.##...#......#.##...#......#.##------------------# #...#......#.##------------------#\n" "###########################################------------------# ###############------------------#\n" "#..#....#....##..#....#....##..#....#....##################### #..#....#....#####################\n" "########################################## #----------# ############## #----------#\n" "#.....#......##.....#......##.....#......# #----------# #.....#......# #----------#\n" "########################################## #----------# ############## #----------#\n" "#.#..#....#..##.#..#....#..##.#..#....#..# #----------# #.#..#....#..# #----------#\n" "########################################## ############ ############## ############"; return 0; }

原來寫好cout << ""之後

直接復制字符到兩個雙引號之間就好了

NOI-1.1-10-字符表示超級瑪麗