質問編集履歴
2
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -73,3 +73,79 @@
|
|
73
73
|
}
|
74
74
|
|
75
75
|
```
|
76
|
+
|
77
|
+
別のやり方も試したもののやはり思い通りになりませんでした
|
78
|
+
|
79
|
+
```java
|
80
|
+
|
81
|
+
import java.util.ArrayList;
|
82
|
+
|
83
|
+
import java.util.Scanner;
|
84
|
+
|
85
|
+
public class Main {
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
public static void main (String []args) {
|
90
|
+
|
91
|
+
//1
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
//配列の作成
|
96
|
+
|
97
|
+
ArrayList<String> text = new ArrayList<String> ();
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
for (int i = 0;i<1;) {
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
//入力の受付
|
108
|
+
|
109
|
+
System.out.println("文字を入力してください");
|
110
|
+
|
111
|
+
String name = new Scanner(System.in).nextLine();
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
//入力チェック
|
116
|
+
|
117
|
+
if (name =="") {
|
118
|
+
|
119
|
+
System.out.println(text);
|
120
|
+
|
121
|
+
System.out.println(text.size());
|
122
|
+
|
123
|
+
break;
|
124
|
+
|
125
|
+
} else {
|
126
|
+
|
127
|
+
for (String j: text) {
|
128
|
+
|
129
|
+
text.add(name);
|
130
|
+
|
131
|
+
}
|
132
|
+
|
133
|
+
}
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
}
|
144
|
+
|
145
|
+
}
|
146
|
+
|
147
|
+
```
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
自分の力不足は承知しています、アドバイスいただけると嬉しいです
|
1
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -58,6 +58,10 @@
|
|
58
58
|
|
59
59
|
System.out.println(text.size());
|
60
60
|
|
61
|
+
break;
|
62
|
+
|
63
|
+
|
64
|
+
|
61
65
|
|
62
66
|
|
63
67
|
}
|