import java.util.Scanner;
public class 자바연습20170627no2 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int input = scanner.nextInt();
for (int i= 1; i <= 9; i++) {
for (int j = input; j <= input; j++) {
System.out.print(j + "*" + i + "=" + (j*i));
}
System.out.println("");
scanner.close();
}
}
}
아직까진 해볼만 한듯
스캐너를 몇 번 닫는 거야
두 번째 포문도 필요엇네
앞날이어두우시네요
수정하러감 ㅠㅠ
클래스명 보고 내렸다