import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
int N, X, input;
N = in.nextInt();
X = in.nextInt();
for (int i = 0; i < N; i++) {
input = in.nextInt();
if (input < X) {
System.out.print(input + " ");
}
}
}
}
더 많은 백준 코드가 보고 싶다면 ? https://chuinggun.tistory.com/category/%EB%B0%B1%EC%A4%80
'알고리즘풀이 > 백준-자바' 카테고리의 다른 글
[백준/JAVA] 10039번 평균점수 (0) | 2020.07.21 |
---|---|
[백준/JAVA] 1110번 더하기 사이클 (0) | 2020.07.21 |
[백준/JAVA] 8393번 합 (0) | 2020.07.21 |
[백준/JAVA] 2439번 별찍기 (0) | 2020.07.21 |
[백준/JAVA] 2438번 별찍기 (0) | 2020.07.21 |
댓글