toRadians() Method in java
Java Programming Language / Number Class in java
3626Program:
public class ToRadiansMethod { public static void main(String args[]) { double x = 60.0; double y = 45.0; System.out.println( Math.toRadians(x) ); System.out.println( Math.toRadians(y) ); } } /* Converts the argument to radians. */
Output:
1.0471975511965976 0.7853981633974483 Press any key to continue . . .
This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS