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