eee2010 @ 2023-08-13 08:42:01
为什么cout一行一行的输出不行
by Coffins @ 2023-08-13 08:47:10
@eee2010 其实是可以的
by Coffins @ 2023-08-13 08:47:23
@hbc002 ?
by qwq_hwc @ 2023-08-13 08:47:39
@eee2010 可以
by qwq_hwc @ 2023-08-13 08:48:16
@hbc002
嘴放干净点
by eee2010 @ 2023-08-13 08:48:33
可是他不是AC
by 蟋蟀喵~~ @ 2023-08-13 08:49:08
@eee2010代码发一下
by Coffins @ 2023-08-13 08:51:23
@eee2010 那就是挂了捏
by Pink_Cut_Tree @ 2023-08-13 08:51:40
@eee2010 您下次求助的时候最好贴上代码和WA记录,这样帮调的时候会方便一点。
我找到了您的WA记录,您将鼠标放在那个WA的图标上,有一行字 Wrong Answer.wrong answer On line 6 column 16, read ., expected .
意思是在第6行16列与输出数据不一致,您输出的是 .
,应该是 .
(虽然我还没看出来问题),您对着这个信息可以改一下
by Pink_Cut_Tree @ 2023-08-13 08:52:00
@shenjingbing_ https://www.luogu.com.cn/record/120593090
by OIerWu_829 @ 2023-08-13 08:52:35
#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 << "########################################## ############";
return 0;
}
可以的呀