回答編集履歴

3

最後の標準出力文のバッファを消去

2020/12/10 11:22

投稿

退会済みユーザー
test CHANGED
@@ -36,7 +36,7 @@
36
36
 
37
37
 
38
38
 
39
- std::cout << ss.str() << '\n';
39
+ std::cout << ss.str() << std::endl;
40
40
 
41
41
 
42
42
 

2

コードの不備修正

2020/12/10 11:22

投稿

退会済みユーザー
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 << '\n';
35
+ << text3;
36
36
 
37
37
 
38
38
 
39
- std::cout << ss.str() << std::endl;
39
+ std::cout << ss.str() << '\n';
40
40
 
41
41
 
42
42
 

1

std::endlを'\n'へ変更

2020/12/09 13:43

投稿

退会済みユーザー
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 << text2 << std::endl;
31
+ ss << text1 << '\n'
34
32
 
35
- ss << text3 << std::endl;
33
+ << text2 << '\n'
36
34
 
37
-
35
+ << text3 << '\n';
36
+
37
+
38
38
 
39
39
  std::cout << ss.str() << std::endl;
40
40