idk how..../////////
package com.codegym.task.task02.task0216;
/*
Minimum of three numbers
*/
public class Solution {
public static int min(int a, int b, int c) {
int m3 = 0 ;
if (a < b && a < c)
m3 = a;
else if (b < c && b < a)
m3 = b;
else if (c < a && c < b)
m3 = c;
return m3; //write your code here
}
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(1, 5, 3));
System.out.println(min(5, 5, 2));
}
}