티스토리 뷰
문제
N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a;
a = sc.nextInt();
for(int i=1; i<10 ; i++)
{
System.out.println(a+" * "+i+" = "+(a*i));
}
}
}
'IT > 백준알고리즘[JAVA]' 카테고리의 다른 글
8393:합 (0) | 2021.06.10 |
---|---|
10950:A+B (0) | 2021.06.10 |
2884:알람 시계 (0) | 2021.06.07 |
14681:사분면 고르기 (0) | 2021.06.07 |
2753:윤년 (0) | 2021.06.07 |
댓글