質問編集履歴
2
こんぱいるできる形に変更しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
-
###txt
|
21
|
+
###sample.txtの中身は以下です
|
22
22
|
|
23
23
|
```
|
24
24
|
|
@@ -36,25 +36,39 @@
|
|
36
36
|
|
37
37
|
```C++
|
38
38
|
|
39
|
-
#include
|
39
|
+
#include<fstream>
|
40
40
|
|
41
|
-
|
41
|
+
#include<iostream>
|
42
42
|
|
43
|
-
|
43
|
+
#include<string>
|
44
44
|
|
45
|
-
i
|
45
|
+
using namespace std;
|
46
|
-
|
47
|
-
file.open("sample.txt");
|
48
46
|
|
49
47
|
|
50
48
|
|
51
|
-
|
49
|
+
int main(){
|
52
50
|
|
53
|
-
getline(file, address);
|
54
51
|
|
55
|
-
file >> japan;
|
56
52
|
|
53
|
+
string address;
|
54
|
+
|
55
|
+
bool japan;
|
56
|
+
|
57
|
+
ifstream file;
|
58
|
+
|
59
|
+
file.open("sample.txt");
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
while(!file.eof()){
|
64
|
+
|
65
|
+
getline(file, address);
|
66
|
+
|
67
|
+
file >> japan;
|
68
|
+
|
57
|
-
}
|
69
|
+
}
|
70
|
+
|
71
|
+
}
|
58
72
|
|
59
73
|
|
60
74
|
|
1
コードの変更と詳細の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,9 +16,31 @@
|
|
16
16
|
|
17
17
|
アドバイスをいただけないでしょうか?
|
18
18
|
|
19
|
+
|
20
|
+
|
21
|
+
###txtファイルの中身は以下です
|
22
|
+
|
23
|
+
```
|
24
|
+
|
25
|
+
Tokyo 1丁目 111-222
|
26
|
+
|
27
|
+
1
|
28
|
+
|
29
|
+
```
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
19
37
|
```C++
|
20
38
|
|
21
39
|
#include <fstream>
|
40
|
+
|
41
|
+
string address;
|
42
|
+
|
43
|
+
bool japan;
|
22
44
|
|
23
45
|
ifstream file;
|
24
46
|
|
@@ -30,7 +52,7 @@
|
|
30
52
|
|
31
53
|
getline(file, address);
|
32
54
|
|
33
|
-
file >>
|
55
|
+
file >> japan;
|
34
56
|
|
35
57
|
}
|
36
58
|
|