What's the prob with this code.. For printing the minimum of three numbers. public class Solution { public static int min(int a, int b, int c) { //write your code here int x = 0; if(a < b || a < c ) x = a; x = c; return x; } 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)); else if(b < a || b < c) x = b; else if(c < a || c < b) }