본문 바로가기
알고리즘/백준 알고리즘

(JAVA) 백준 알고리즘 10871 문제 - X 보다 작은 수 나열

by Love of fate 2020. 10. 6.
728x90
반응형

(7분)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import java.util.Scanner;
 
public class MainTest10871 {
 
    public static void main(String[] args) {
        
        //X 보다 작은 수 나열 
        Scanner sc = new Scanner(System.in);
        
        int N = sc.nextInt();
        int X = sc.nextInt();
        
        int [] A = new int[N];
        
        for(int i = 0; i < A.length; i++) {
            A[i] = sc.nextInt();
        }
        
        for(int i = 0; i < A.length; i++) {
        
            if(A[i] < X) {
                System.out.print(A[i] + " ");
            }
        }
    }
}
728x90
반응형