0分求助!!!

P1000 超级玛丽游戏

zzy20131010 @ 2024-02-03 09:38:52

#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;
    cout<<"##############################################################"<<endl;
    cout<<"#...#......#.##...#......#.##...#......#.##------------------#"<<endl;
    cout<<"###########################################------------------#"<<endl;
    cout<<"#..#....#....##..#....#....##..#....#....#####################"<<endl;
    cout<<"##########################################    #----------#"<<endl;
    cout<<"#.....#......##.....#......##.....#......#    #----------#"<<endl;
    cout<<"##########################################    #----------#"<<endl;
    cout<<"#.#..#....#..##.#..#....#..##.#..#....#..#    #----------#"<<endl;
    cout<<"##########################################    ############"<<endl;
}

by MLE_Automaton @ 2024-02-03 09:47:05

第一行空格数不对


by wdm1121 @ 2024-02-03 09:48:02

第一二行输出是这样的:

                ********
               ************

、应该是空一个格,而你空了两个格


by cff_0102 @ 2024-02-03 09:58:50

怎么这么多第一行缺个空格的


by penguin_is_cool @ 2024-02-03 10:01:28

@zzy20131010 你直接复制粘贴就行了


by xingcode @ 2024-02-03 10:10:05

@zzy20131010 不是哥们你发这么多求助帖,就不能自己思考一下吗?你前面的帖子里面,回了你之后你跟似了一样,你浪费大家的时间和耐心是这么心安理得的吗?还有别人一说你就删帖,你把别人当猴耍?


by zzy20131010 @ 2024-02-04 10:20:17

@xingcode 帖子不是我删的,是系统删的。


by zzy20131010 @ 2024-02-04 10:35:19

还有@xingcode 对不起,我以后不会再发这么多帖子了,请大家原谅!


by zzy20131010 @ 2024-02-04 10:36:41

还有 @penguin_is_cool @cff_0102 @ChenXiJie2013 @wdm1121 谢谢你们的帮助, 我会关注你们的!!


by kimi0809 @ 2024-02-05 10:37:03

你要逐行复制粘贴啊


by zuohanyi114514 @ 2024-02-22 22:51:24

@zzy20131010 把我的代码给你吧```

include<bits/stdc++.h>

using namespace std; int main(){ printf(" ****\n"); printf(" ****\n"); printf(" ####....#.\n"); printf(" #..###.....##....\n"); printf(" ###.......###### ### ###\n"); printf(" ........... #...# #...#\n"); printf(" ##*####### #.#.# #.#.#\n"); printf(" ####****###### #.#.# #.#.#\n"); printf(" ...#..*###.... #...# #...#\n"); printf(" ....**##..... ### ###\n"); printf(" ....*** ....\n"); printf(" #### ####\n"); printf(" ###### ######\n"); printf("##############################################################\n"); printf("#...#......#.##...#......#.##...#......#.##------------------#\n"); printf("###########################################------------------#\n"); printf("#..#....#....##..#....#....##..#....#....#####################\n"); printf("########################################## #----------#\n"); printf("#.....#......##.....#......##.....#......# #----------#\n"); printf("########################################## #----------#\n"); printf("#.#..#....#..##.#..#....#..##.#..#....#..# #----------#\n"); printf("########################################## ############"); return 0; }


| 下一页