Не засчитывает третье условие
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 % 2 == 0 && x < min) {
min = x;
}
}
System.out.println(min);
}
}