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

        double d1 = 0.6, d2 = 90.00;

        System.out.println("arc tangent value after conversion = " + StrictMath.atan2(d1, d2));

        System.out.println("arc tangent value after conversion = " + StrictMath.atan2(d2, d1));
    }
}