import java.io.BufferedReader; import java.io.InputStreamReader; public class Max { public static void main(String[] args) throws Exception { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); System.out.print("Введите 1 число : "); int a = Integer.parseInt(reader.readLine()); System.out.print("Введите 2 число : "); int b = Integer.parseInt(reader.readLine()); System.out.print("Введите 3 число : "); int c = Integer.parseInt(reader.readLine()); System.out.print("Введите 4 число : "); int d = Integer.parseInt(reader.readLine()); System.out.println("Вы ввели: " + a +","+ b+","+c+","+d); int max; if ( a > b && a > c && a > d ) { max = a; } else if (b > a && b > c && b > d) { max = b; } else if (c > a && c > b && c > d) { max = c; } else { max = d; } System.out.println("Максимальное будет число : " + max); } }