Не понимаю как использовать min( a,b) в методе min(a,b,c,d) и для чего , если нужный результат имеется
package com.javarush.task.task02.task0217;
/*
Минимум четырех чисел
*/
public class Solution {
public static int min(int a, int b, int c, int d) {
//напишите тут ваш код
int result = a;
if (result > b)
result = b;
if (result > c)
result = c;
if (result > d)
result = d;
return result;
}
public static int min(int a, int b) {
//напишите тут ваш код
int result = a;
if (result > b)
result = b;
return result;
}
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));
}
}