[백준] 2739번(Java/자바)

Yeoonnii·2022년 8월 26일
0
post-custom-banner

백준 2739번 구구단

💻제출 코드

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();

        sc.close();

        for(int i=1; i<=9; i++){
            System.out.println( N + " * " + i + " = " + (N*i) );
        }
        }
    }

0개의 댓글