Cześć !
Nie wiem jak zmodyfikować metodę min, aby nie wyświetlała tylko boolen z a lub e, ale ze wszystkich liczb.
Pomoże ktoś? ; )
package pl.codegym.task.task05.task0531;
import java.io.BufferedReader;
import java.io.InputStreamReader;
/*
Poprawianie funkcjonalności
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int a = Integer.parseInt(reader.readLine());
int b = Integer.parseInt(reader.readLine());
int c = Integer.parseInt(reader.readLine());
int d = Integer.parseInt(reader.readLine());
int e = Integer.parseInt(reader.readLine());
int minimum = min(a, b, c, d, e);
System.out.println("Minimum = " + minimum);
}
public static int min(int a, int b, int c, int d, int e) {
return a < b & b < c & c < d & d < e ? a : e;
}
}