[Algorithm] 백준 10871 X 보다 작은 수 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int x = sc.nextInt(); for(int i=0; i Algorithm/백준+프로그래머스+SWEA+정올+구름 2021. 3. 24. 23:55
[Algorithm] 백준 2739 구구단 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for(int i=1; i Algorithm/백준+프로그래머스+SWEA+정올+구름 2021. 3. 24. 23:23