package com.codegym.task.task02.task0216;
/*
Minimum of three numbers
*/
public class Solution {
public static int min(int a, int b, int c) {
int m = 0;
if (a<=b && b<=c)
m = a;
if (a<=b && b>= c)
m = a;
if (b<=a && a<=c)
m = b;
if (b<=a && a>=c)
m = b;
if (c<=a && a<=b)
m = c;
if (c<=a && a>=b)
m = c;
return m;
//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(3, 5, 3));
System.out.println(min(5, 5, 10));
}
}
package com.codegym.task.task02.task0216;
/*
Minimum of three numbers
*/
public class Solution {
public static int min(int a, int b, int c) {
int m = 0;
if (a<=b && b<=c)
m = a;
if (a<=b && b>= c)
m = a;
if (b<=a && a<=c)
m = b;
if (b<=a && a>=c)
m = b;
if (c<=a && a<=b)
m = c;
if (c<=a && a>=b)
m = c;
return m;
//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(3, 5, 3));
System.out.println(min(5, 5, 10));
}
}
return the minimum of the numbers a, b, and c.Here you first assign the value into m and then you return m . you can uses " return a;" in place of a=m in each statement