Всем привет!Подскажите пожалуйста,почему не принимается верный ответ?
package com.javarush.task.task02.task0216;
/*
Минимум трёх чисел
*/
public class Solution {
public static int min(int a, int b, int c) {
int result;
if (a < b) {
result = a;
} else {
result = a;
}
if (result > c) {
result = c;
}
return result;
}
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));
}
}