why is the compiler giving me void error
package com.codegym.task.task02.task0216;
/*
Minimum of three numbers
*/
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));
}
public class Solution {
public static int min(int a, int b, int c) {
if(a<b){ if(a<c){return a;}}
else if(b<a){ if(b<c){return b;}}
else {return c;}
}