программа пишет 3 -3 3 10 почему первое и четвёртое значение не верное
package com.javarush.task.task02.task0216;
/*
Минимум трёх чисел
*/
public class Solution {
public static int min(int a, int b, int c) {
int o;
if (a>b && a>c)
o = a;
else
if (b<c && b<a)
o = b;
else
if (a == b)
o = a;
else
if (a == c)
o = a;
if (b == c)
o = b;
else
o = c;
return o;
}
public static void main(String[] args) throws Exception {
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));
}
}