seong

백준 10950번 본문

알고리즘/백준

백준 10950번

hyeonseong 2022. 7. 29. 09:23
import java.util.Scanner;
public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
            for(int i = 1; i<10;i++){
                System.out.println(a + " * " + i + " = " + a*i);
        }
    }
}

 

'알고리즘 > 백준' 카테고리의 다른 글

백준 15552번 (BufferedReader, StringTokenizer)  (0) 2022.07.29
백준 8393번  (0) 2022.07.29
백준 2739번  (0) 2022.07.29
백준 2480번 (Math.max)  (0) 2022.07.29
백준 2525번  (0) 2022.07.29