PHP神奇做法

P1000 超级玛丽游戏

yingxilin @ 2024-10-22 13:21:12

其实只要把语言改成PHP,复制那段图形交上去,然后就过了……


by xiayubin @ 2024-10-22 13:27:57

题解里有啊


by baimoning @ 2024-10-24 21:45:38

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

|