공부하시는대에 도움이 됐으면 좋겠습니다.
답안코드 확인해주세요!
더보기
import java.util.Scanner;
public class Main {
public static void main(String args[]) {
String[][] arr = { { "5", "8", "10", "6", "4" }, { "11", "20", "1", "13", "2" },
{ "7", "9", "14", "22", "3" } };
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 5; j++) {
if (arr[i][j].length() ==2)
System.out.print(arr[i][j] + " ");
else
System.out.print(" " + arr[i][j]+" ");
}
System.out.println();
}
}
}
더 많은 자바코드가 보고 싶다면?
댓글