Не засчитывает 3 и 4 условие не понимаю почему??? Хотя при поставление различных вариантов считает ВЕРНО!
Scanner console = new Scanner(System.in);
    int max = 0;

    while (console.hasNextInt())
{
    int x = console.nextInt();
    if ((x % 2)==0)
    if (x > max)
        max = x;
}
    if (max<=0)
      System.out.println(Integer.MIN_VALUE);
    else
      System.out.println(max);
}
}