This is my code It says the variable m might not have been initialized, but when I try to initialize it with 0 or -2147483648 the number I initialize it with is what it returns. It's like it ignores calling min method. I'm lost. ------------------- /* Minimum of three numbers */ public class Solution { public static int min(int a, int b, int c) { int m; if(a<=b && a<=c) { a = m; } else if(b<=c && b<=a) { b = m; } else if(c<=a && c<=b) { c = m; } return m; } 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)); } }