⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 trigonometricdemo.java

📁 这是一个英文版的《Java程序设计与问题解决》现在好多大学都当成教材
💻 JAVA
字号:
public class TrigonometricDemo {    public static void main(String[] args) {        double degrees = 45.0;        double radians = Math.toRadians(degrees);                System.out.println("The value of pi is " + Math.PI);        System.out.println("The sine of " + degrees + " is " + Math.sin(radians));        System.out.println("The cosine of " + degrees + " is " + Math.cos(radians));        System.out.println("The tangent of " + degrees + " is " + Math.tan(radians));        System.out.println("The arc sine of " + Math.sin(radians) + " is " +                           Math.toDegrees(Math.asin(Math.sin(radians))) + " degrees");        System.out.println("The arc cosine of " + Math.cos(radians) + " is " +                            Math.toDegrees(Math.acos(Math.cos(radians))) + " degrees");        System.out.println("The arc tangent of " + Math.tan(radians) + " is " +                            Math.toDegrees(Math.atan(Math.tan(radians))) + " degrees");    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -