CodeGym says i failed to return the minimum of the numbers, however when i run the program it outputs the correct solution?
package com.codegym.task.task02.task0216;
/*
Minimum of three numbers
*/
public class Solution {
public static int min(int a, int b, int c) {
int m;
if (a <= b){
m = a;
} else
if (b <= c){
m = b;
} else {
m = c;
}
return m;//write your code here
}
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(2, 2, 2222222));
}
}