728x90
★ 문제
- N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다.
★ 소스코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
kookoodan(n);
}
public static void kookoodan(int n) {
for(int i=1; i<10; i++) {
System.out.printf("%d * %d = %d\n",n, i, n*i);
}
}
}
728x90
'백준 알고리즘' 카테고리의 다른 글
3. 반복문 - 3 (8393번) (0) | 2023.02.28 |
---|---|
3. 반복문 - 2 (10950번) (0) | 2023.02.28 |
2. 조건문 - 7 (2480번) (0) | 2023.02.28 |
2. 조건문 - 6 (2525번) (0) | 2023.02.28 |
2. 조건문 - 5 (2884번) (0) | 2023.02.28 |