X보다 작은 수
-
boj)10871PS/boj 2020. 8. 22. 12:01
import java.util.Scanner; public class Main { public static void main(String[] args) { /** * #10871) X보다 작은 수 * 정수 N개로 이루어진 수열 A와 정수 X, * 이때 A에서 X보다 작은 수를 모두 출력하기 * * ex) 10 5 * 1 10 4 9 2 3 8 5 7 6 * * -> 1 4 2 3 // 적어도 하나 존재 */ Scanner scanner = new Scanner(System.in); // System.out.println("N : "); int N = scanner.nextInt(); // System.out.println("X : "); int X = scanner.nextInt(); int[] arr ..