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

        // get a variable x which is equal to PI/2
        double x = Math.PI / 2;

        // convert x to Radians
        x = Math.toRadians(x);

        // get the arc sine of x
        System.out.println("Math.asin(" + x + ")=" + Math.asin(x));
    }
}