[JAVA] 백준 10871번 : X보다 작은수
·
Computer Science/자료구조와 알고리즘
1. 문제 정수 N개로 이루어진 수열 A와 정수 X가 주어진다. 이때, A에서 X보다 작은 수를 모두 출력하는 프로그램을 작성하시오. 2. 코드 import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n,x; n=sc.nextInt(); x=sc.nextInt(); int[] A = new int[n]; for(int i=0;i