When I run the code I see that I'm outputting the minimum of the three numbers.
I even worked it out using an IDE.
package com.codegym.task.task02.task0216;
/*
Minimum of three numbers
*/
public class Solution {
public static int min(int a, int b, int c) {
//write your code here
int min = 0;
if(a == b) {
if(a < c)
min = a;
else
min = c;
} else if(a == c) {
if(a < b)
min = a;
else
min = b;
} else {
if(a < b && a < c)
min = a;
else if(b < a && b < c)
min = b;
else if(c < a && c < b)
min = c;
}
return min;
}
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));
}
}