回答編集履歴
3
*間違いprofile.lenth → 正しくはprofile.length
test
CHANGED
@@ -46,7 +46,7 @@
|
|
46
46
|
|
47
47
|
//*変更 iの上限を要素数に合わせる
|
48
48
|
|
49
|
-
for(int i=0; i<profile.lenth; i++){
|
49
|
+
for(int i=0; i<profile.length; i++){
|
50
50
|
|
51
51
|
System.out.print(profile[i]);
|
52
52
|
|
2
間違いprofile.lenth → 正しくはprofile.length
test
CHANGED
@@ -42,6 +42,8 @@
|
|
42
42
|
|
43
43
|
|
44
44
|
|
45
|
+
//*間違いprofile.lenth → 正しくはprofile.length
|
46
|
+
|
45
47
|
//*変更 iの上限を要素数に合わせる
|
46
48
|
|
47
49
|
for(int i=0; i<profile.lenth; i++){
|
1
mainメソッドにてString[] profile=getUserProfile(1);
test
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
+
//ご指摘どおり型変換は必要ありませんでした。↓2行目間違いです。
|
2
|
+
|
1
3
|
int型をString型に型変換することで解決しました。
|
4
|
+
|
5
|
+
|
2
6
|
|
3
7
|
|
4
8
|
|
@@ -12,7 +16,7 @@
|
|
12
16
|
|
13
17
|
|
14
18
|
|
15
|
-
//*
|
19
|
+
//*型変換の必要はありませんでした。↓必要なし。
|
16
20
|
|
17
21
|
String strnum=String.valueOf(num);
|
18
22
|
|