본문 바로가기

알고리즘/백준

[백준] 10871 - X보다 작은 수

반응형

10871번 문제

 

1. Scanner를 이용한 방법

import java.util.*;

public class Main{
    public static void main(String[] args){
       
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int x = sc.nextInt();
        int[] num = new int[n];

        for(int i=0;i<n; i++){
            num[i] = sc.nextInt();
        }

        for(int j=0;j<n;j++){
            if(num[j] < x){
            System.out.println(num[j]);
            }
        }
        sc.close();

    }
}

 

2. BufferedReader를 이용한 방법

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

public class Main{
    public static void main(String[] args)throws IOException{
       
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st1 = new StringTokenizer(br.readLine(), " ");

        int n = Integer.parseInt(st1.nextToken());
        int x = Integer.parseInt(st1.nextToken());
        int[] num = new int[n];

        StringTokenizer st2 = new StringTokenizer(br.readLine(), " ");

        for(int i=0;i<n; i++){
            num[i] = Integer.parseInt(st2.nextToken());
            if(num[i] < x){
                System.out.println(num[i]);
                }
        }

        br.close();

    }
}

StringTokenizer 하나로 다 쓰려고 했는데 그러면 NoSuchElementException 오류가 떠서 StringTokenizer를 2개 사용해서 풀었다.

반응형

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

[백준] 2562 - 최댓값  (0) 2024.02.14
[백준] 10818 - 최소, 최대  (0) 2024.02.13
[백준] 10807 - 개수 세기  (0) 2024.02.11
[백준] 10951 - A + B(4)  (0) 2024.02.10
[백준] 10952 - A + B (5)  (0) 2024.02.09