回答編集履歴
3
最後の標準出力文のバッファを消去
test
CHANGED
@@ -36,7 +36,7 @@
|
|
36
36
|
|
37
37
|
|
38
38
|
|
39
|
-
std::cout << ss.str() <<
|
39
|
+
std::cout << ss.str() << std::endl;
|
40
40
|
|
41
41
|
|
42
42
|
|
2
コードの不備修正
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
{
|
18
18
|
|
19
|
-
auto text1 = std::string("あいうえお
|
19
|
+
auto text1 = std::string("あいうえお");
|
20
20
|
|
21
21
|
auto text2 = std::string("かきくけこ");
|
22
22
|
|
@@ -32,11 +32,11 @@
|
|
32
32
|
|
33
33
|
<< text2 << '\n'
|
34
34
|
|
35
|
-
<< text3
|
35
|
+
<< text3;
|
36
36
|
|
37
37
|
|
38
38
|
|
39
|
-
std::cout << ss.str() <<
|
39
|
+
std::cout << ss.str() << '\n';
|
40
40
|
|
41
41
|
|
42
42
|
|
1
std::endlを'\n'へ変更
test
CHANGED
@@ -22,19 +22,19 @@
|
|
22
22
|
|
23
23
|
auto text3 = std::string("さしすせそ");
|
24
24
|
|
25
|
-
|
25
|
+
|
26
26
|
|
27
27
|
auto ss = std::stringstream();
|
28
28
|
|
29
|
-
|
30
29
|
|
31
|
-
ss << text1 << std::endl;
|
32
30
|
|
33
|
-
ss << text
|
31
|
+
ss << text1 << '\n'
|
34
32
|
|
35
|
-
|
33
|
+
<< text2 << '\n'
|
36
34
|
|
37
|
-
|
35
|
+
<< text3 << '\n';
|
36
|
+
|
37
|
+
|
38
38
|
|
39
39
|
std::cout << ss.str() << std::endl;
|
40
40
|
|