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) {

        long l1 = 1234567890987654321L, l2 = 9876543212435L, l3 = -9876543212435L;

        System.out.println(StrictMath.max(l1, l2));

        System.out.println(StrictMath.max(l1, l3));
    }
}