回答編集履歴

2

質問が変更されたので削除

2020/08/26 03:04

投稿

mjk
mjk

スコア303

test CHANGED
@@ -1,43 +1 @@
1
- タグにCとC++とあるので、CなのかC++なのか両方なのか競技プログラムで使うのかなどで変わりますがC++の場合の一例です。
2
-
3
-
4
-
5
- 参考:
6
-
7
- [【就プロ】C++標準入出力](http://takahiro-itazuri.hatenadiary.jp/entry/2017/12/31/020759)
8
-
9
- [標準入力から安全に文字列を受け取る方法いろいろ](https://qiita.com/mpyw/items/aff12a6ff2c7726ed1d8)
10
-
11
-
12
-
13
- ```C++
14
-
15
- #include <iostream>
16
-
17
- #include <cstdio>
18
-
19
- #include <string>
20
-
21
-
22
-
23
- // "EOF=Windows10ならF6キー→Enterキーで終了"
24
-
25
- int main() {
26
-
27
- std::string line;
1
+ 質問が変更されたので削除します。
28
-
29
- while (!std::cin.eof()) {
30
-
31
- std::getline(std::cin, line);
32
-
33
- }
34
-
35
- std::cout << line << std::endl;
36
-
37
- getchar();
38
-
39
- return 0;
40
-
41
- }
42
-
43
- ```

1

#include修正

2020/08/26 03:04

投稿

mjk
mjk

スコア303

test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  #include <iostream>
16
16
 
17
- #include <stdio.h>
17
+ #include <cstdio>
18
18
 
19
19
  #include <string>
20
20