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 = 1.5707963267948966, d2 = 0.0;

        System.out.println("Degree value of d1 : " + StrictMath.toDegrees(d1));

        System.out.println("Degree value of d2 : " + StrictMath.toDegrees(d2));
    }
}