I just need a little help understanding this and if I should be writing it any differently. I see other examples with " { } " brackets around the inside of the if statements and I see double boolean && that im a little unsure of how to use as well.
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
if (a < b & a < c)
return a;
else if (b < a & b < c)
return b;
else
return c;
}
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));
}
}