https://www.acmicpc.net/problem/2739
정답
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
int n = Integer.parseInt(str);
for(int i = 1; i<=9; i++){
System.out.println(n+" * "+i+" = "+n*i);
}
}
}
'JAVA > 백준' 카테고리의 다른 글
[Java11] 8393번 : 합 (1) | 2024.09.11 |
---|---|
[Java11] 10950번 : A+B - 3 (0) | 2024.09.11 |
[Java11] 2525번 : 오븐 시계 (0) | 2024.09.08 |
[Java11] 2884번 : 알람 시계 (0) | 2024.09.08 |
[Java11] 10926번 : ??! (0) | 2024.09.05 |