"BOJ 10871 X보다 작은 수"의 두 판 사이의 차이

잔글 (봇: BOJ Java 제거)
1번째 줄: 1번째 줄:
[[분류:BOJ 4단계|3]]
==개요==
==개요==
* {{BOJ|10871}}
* {{BOJ|10871}}
* 정수 N개 중에서 X보다 작은 수 모두 출력해보기
* 알고리즘 분류: 구현
* 알고리즘 분류: 구현


19번째 줄: 21번째 줄:
}
}
</source>
</source>
[[분류:BOJ 4단계]]

2018년 7월 27일 (금) 03:35 판

1 개요

BOJ 10871 X보다 작은 수

[[분류:BOJ {{{단계}}}단계]]

  • 정수 N개 중에서 X보다 작은 수 모두 출력해보기
  • 알고리즘 분류: 구현

2 Java

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 a;
        for(int i=0; i<n; i++) {
            a = sc.nextInt();
            if (a<x) System.out.print( a + " " );
        }
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}