I was previously getting the error "variable min might not have been initialized" so I changed int min; to int min = 0 and the program runs, however it is now giving me the last error and I cant figure it out.
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 & b < c){
min = a;
}
else if (a > b & b > c){
min = c;
}
else if (a <= c & a < b){
min = a;
}
else if (a <= b & b < c){
min = a;
}
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));
}
}