공부하시는대에 도움이 됐으면 좋겠습니다.
답안코드 확인해주세요!
더보기
import java.util.Scanner;
public class Main {
public static void call(int input) {
for (int i = 1; i <= input; i++) {
for (int j = 1; j <= input; j++) {
System.out.print(i * j+" ");
}
System.out.println();
}
}
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
int input1 = in.nextInt();
call(input1);
}
}
댓글