Не получается решить, хотя вроде все верно, кто может объяснить?
package com.javarush.task.task02.task0216;
/*
Минимум трёх чисел
*/
public class Solution {
public static int min(int a, int b, int c) {
if(a <= b && a<= c){
return a;
}
else if(a >= b && b<= c){
return b;
}
else{
return c; return c;
}
}
public static void main(String[] args) {
System.out.println(min(1, 2, 3));
System.out.println(min(-1, -2, -3));
System.out.println(min(3, 5, 3));
System.out.println(min(5, 5, 10));
}
}