WA?

P1000 超级玛丽游戏

复制错了
by sunhaoyun @ 2024-03-15 21:44:30


```cpp #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; return 0; } ```
by sunhaoyun @ 2024-03-15 21:45:13


(代码)
by sunhaoyun @ 2024-03-15 21:45:33


当然,这道题有一些简单方式,比如 ```cpp #include <bits/stdc++.h> using namespace std; int main() { cout << " ********\n" " ************\n" " ####....#.\n" " #..###.....##....\n" " ###.......###### ### ###\n" " ........... #...# #...#\n" " ##*####### #.#.# #.#.#\n" " ####*******###### #.#.# #.#.#\n" " ...#***.****.*###.... #...# #...#\n" " ....**********##..... ### ###\n" " ....**** *****....\n" " #### ####\n" " ###### ######\n" "##############################################################\n" "#...#......#.##...#......#.##...#......#.##------------------#\n" "###########################################------------------#\n" "#..#....#....##..#....#....##..#....#....#####################\n" "########################################## #----------#\n" "#.....#......##.....#......##.....#......# #----------#\n" "########################################## #----------#\n" "#.#..#....#..##.#..#....#..##.#..#....#..# #----------#\n" "########################################## ############\n"; return 0; } ```
by sunhaoyun @ 2024-03-15 21:50:49


@[jmj20130514x](/user/1073139)
by sunhaoyun @ 2024-03-15 21:52:09


建议你粘贴输出到提交代码,语言选择PHP,就ac啦
by SixSeven @ 2024-03-23 15:35:51


|