I don't know how to continue, seems everything is fine and but still haven't got last line right "The min method must return the minimum of the numbers a, b, and c."
It print out 1, -1,3 and 5 which should be minimum numbers. How to continue about this?
package com.codegym.task.task02.task0216;
/*
Minimum of three numbers
*/
public class Solution {
public static int min(int a, int b, int c) {
if((a<c)||(b<c))
return a;
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));
}
}