본문 바로가기
알고리즘풀이/백준-자바

[백준/JAVA] 10871번 X보다 작은 수

by 이얏호이야호 2020. 7. 21.

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



댓글