다음과 같은 프로그램을 작성하시오.
- N과 X를 입력 받는다.
- N개의 정수를 입력 받는다.
- N개의 숫자 중 X보다 작은 수만 출력 한다.
import java.io.*;
import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int a = 0;
int count = 0;
System.out.print("N 입력 : ");
int n = sc.nextInt();
System.out.print("X 입력 : ");
int x = sc.nextInt();
int[] j = new int[n];
for(int i=0;i<n;i++) {
System.out.print(i+1 +"번째 정수 입력 >> ");
a = sc.nextInt();
if(x>a) {
j[count] = a;
count++;
}
}
System.out.print("결과 >> ");
for(int i = 0; i<count;i++) {
System.out.print(j[i]+ " ");
}
sc.close();
}
}
'Algorithm > JavaFestival' 카테고리의 다른 글
JavaFestival30 문제풀이 (0) | 2022.07.07 |
---|---|
JavaFestival29 문제풀이 (0) | 2022.07.07 |
JavaFestival27 문제풀이 (0) | 2022.07.07 |
JavaFestival26 문제풀이 (0) | 2022.07.07 |
JavaFestival25 문제풀이 (0) | 2022.07.07 |