题解:#1200. 超级玛丽 审核通过

Teacher_wang 因为他善 2024-12-22 19:02:49 4

纯水题

洛谷的题

python

记住print里面三引号是可以多行输出的,三个单引号或三个双引号都行(C++习惯了所以我用了双引号)

第一步:把多行字符串复制上来

                ********
               ************
               ####....#.
             #..###.....##....
             ###.......######              ###            ###
                ...........               #...#          #...#
               ##*#######                 #.#.#          #.#.#
            ####*******######             #.#.#          #.#.#
           ...#***.****.*###....          #...#          #...#
           ....**********##.....           ###            ###
           ....****    *****....
             ####        ####
           ######        ######

第二步,在首尾都加一点东西

print("""
                ********
               ************
               ####....#.
             #..###.....##....
             ###.......######              ###            ###
                ...........               #...#          #...#
               ##*#######                 #.#.#          #.#.#
            ####*******######             #.#.#          #.#.#
           ...#***.****.*###....          #...#          #...#
           ....**********##.....           ###            ###
           ....****    *****....
             ####        ####
           ######        ######
""")

成功AC

C++

第一步:复制这个图像

                ********
               ************
               ####....#.
             #..###.....##....
             ###.......######              ###            ###
                ...........               #...#          #...#
               ##*#######                 #.#.#          #.#.#
            ####*******######             #.#.#          #.#.#
           ...#***.****.*###....          #...#          #...#
           ....**********##.....           ###            ###
           ....****    *****....
             ####        ####
           ######        ######

第二步:在前面加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;

第三步:加头文件等(一个正确的代码必须有头文件这个不用多说)

#include<bits/stdc++.h>
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;
    return 0;
}

成功AC

{{ vote && vote.total.up }}