Хотя выводится число 4. Не понял
package com.javarush.task.pro.task04.task0409;
import java.util.Scanner;
/*
Минимум из введенных чисел
*/
public class Solution {
public static void main(String[] args) {
Scanner console = new Scanner (System.in);
int min = Integer.MAX_VALUE;
while (console.hasNextInt()) {
int x = console.nextInt();
if (x < min){
min = x;
}
else if (console.hasNextLine())
break;
//напишите тут ваш код
}
System.out.println(min);
}
}