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 x = 0.5;
        double y = -1;

        // convert them in degrees
        x = Math.toDegrees(x);
        y = Math.toDegrees(y);

        System.out.println(x);
        System.out.println(y);

    }
}