Eggs Sunny Side Up
본문 바로가기
Algorithm/Java Festival

[Java Festival] N과 X의 정수를 입력받고 X보다 작은 수만 출력

by guswn100059 2023. 3. 13.

import java.util.Scanner;

public class d {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);

		System.out.print("N 입력 >> ");
		int n = sc.nextInt();
		
		System.out.print("X 입력 >> ");
		int x = sc.nextInt();
		
		String result = "";
		
		for(int i = 0; i < 10; i++) {
			System.out.print((i+1)+"번째 정수 입력 >> ");
			int num = sc.nextInt();
			
			if(num < x) {
				result += num+" ";
			}
		}
		System.out.println("결과 >> "+result);
		

	}
}

댓글