Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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));
    }
}