Java tutorial
public class Main { public static void main(String[] args) { float f1 = 60, f2 = 40, f3 = -5; System.out.println(StrictMath.max(f1, f2)); System.out.println(StrictMath.max(f1, f3)); } }