seong

백준 10817번 본문

알고리즘/백준

백준 10817번

hyeonseong 2022. 7. 29. 10:29
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(); // 비교할 숫자
        int number;
        int a[] = new int[n]; // 배열의 크기를 n
        for(int i = 0; i < n ; i++){
            number = sc.nextInt();
            a[i] = number;
            if(x > a[i]){
                System.out.print(a[i] + " ");
            }
        }


    }
}

'알고리즘 > 백준' 카테고리의 다른 글

백준 10951번(hasNextInt() - 반복문 입력 값 없을때 종료 시점)  (0) 2022.07.29
백준 10952번  (0) 2022.07.29
백준 2439번  (0) 2022.07.29
백준 2438번  (0) 2022.07.29
백준 11022번  (0) 2022.07.29