回答編集履歴
1
インデントの修正
answer
CHANGED
@@ -11,9 +11,9 @@
|
|
11
11
|
for(int j = 0; j < columns.length; j++) {
|
12
12
|
System.out.println(j + " : " + columns[j]);
|
13
13
|
if(j==2 && p1.matcher(columns[j]).matches()==false){
|
14
|
-
|
14
|
+
System.out.println("任意番号がおかしい: "+column[j]);
|
15
15
|
}else if(j==3 && p2.matcher(columns[j]).matches()==false){
|
16
|
-
|
16
|
+
System.out.println("携帯番号がおかしい: "+column[j]);
|
17
17
|
}
|
18
18
|
}
|
19
19
|
```
|