При включении ругается на 49-ую (изначально прописанную в задании) строчку.
package com.javarush.task.task02.task0217;
/*
Минимум четырех чисел
*/
public class Solution {
public static int min(int a, int b, int c, int d) {
if (a < b){
if (a < c){
if (a < d){
return a;
}
else{
return d;
}
}
else{
if (c < d){
return c;
}
else{
return d;
}
}
}
else{
if(b < c){
if (b < d){
return b;
}
else{
return d;
}
}
else{
if (c < d){
return c;
}
else{
return d;
}
}
}
}
}
public static int min(int a, int b) {
if (a < b){
return a
}
else{
return b
}
}
public static void main(String[] args) throws Exception {
System.out.println(min(-20, -10));
System.out.println(min(-40, -10, -30, 40));
System.out.println(min(-20, -40, -30, 40));
System.out.println(min(-20, -10, -40, 40));
System.out.println(min(-20, -10, -30, -40));
}
}