Online Java Compiler By
JavaTpoint.com
public class ToDegreesExample2 { public static void main(String[] args) { double x = (Math.PI)/2; // converting value of PI in degrees System.out.println(Math.toDegrees(x)); } }
Output