소스 코드
package com.company;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("테스트 케이스 숫자 두 개를 입력해주세요.");
int T = sc.nextInt();
int inputNum = sc.nextInt();
int arr[] = new int[T];
for(int i=0; i<arr.length; i++) {
arr[i] = sc.nextInt();
}
for(int i=0; i<arr.length; i++) {
if(arr[i] < inputNum) {
System.out.print(arr[i] + " ");
}
}
}
}
출력 결과
'5. 알고리즘 > 5_3 백준' 카테고리의 다른 글
[백준 알고리즘] 백준 2562번 최댓값 자바(JAVA) (0) | 2020.02.10 |
---|---|
[백준 알고리즘] 백준 10818번 최소, 최대 자바(JAVA) (0) | 2020.02.10 |
[백준 알고리즘] 백준 2439번 별 찍기 - 2 자바(JAVA) (0) | 2020.02.09 |
[백준 알고리즘] 백준 2438번 별 찍기 -1 자바(JAVA) (0) | 2020.02.09 |
[백준 알고리즘] 백준 8393번 합 자바(JAVA) (0) | 2020.02.09 |