반응형

 

 

 

<코드>

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 < N; i++) {
			int A = sc.nextInt();
			if(A < X) System.out.print(A+" ");
		}
	}
}

 

 

https://www.acmicpc.net/problem/10871

 

10871번: X보다 작은 수

첫째 줄에 N과 X가 주어진다. (1 ≤ N, X ≤ 10,000) 둘째 줄에 수열 A를 이루는 정수 N개가 주어진다. 주어지는 정수는 모두 1보다 크거나 같고, 10,000보다 작거나 같은 정수이다.

www.acmicpc.net

반응형

'🧩PS > 🥉Easy' 카테고리의 다른 글

[JAVA] 백준 10951번 - A+B - 4  (0) 2021.09.17
[JAVA] 백준 10952번 - A+B - 5  (0) 2021.09.17
[JAVA] 백준 2439번 - 별 찍기 - 2  (0) 2021.09.17
[JAVA] 백준 2438번 - 별 찍기 - 1  (0) 2021.09.17
[JAVA] 백준 11022번 - A+B - 8  (0) 2021.09.17

+ Recent posts