Не засчитывает 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);
}
}
package com.javarush.task.pro.task04.task0408;
import java.util.Scanner;
/*
Максимум из введенных чисел
*/
public class Solution {
public static void main(String[] args) {
//напишите тут ваш код
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);
}
}