博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
吴裕雄--天生自然 JAVA开发学习:Number & Math 类
阅读量:5334 次
发布时间:2019-06-15

本文共 1111 字,大约阅读时间需要 3 分钟。

int a = 5000;float b = 13.65f;byte c = 0x4a;
public class Test{    public static void main(String args[]){      Integer x = 5;      x =  x + 10;      System.out.println(x);    }}
public class Test {      public static void main (String []args)      {          System.out.println("90 度的正弦值:" + Math.sin(Math.PI/2));          System.out.println("0度的余弦值:" + Math.cos(0));          System.out.println("60度的正切值:" + Math.tan(Math.PI/3));          System.out.println("1的反正切值: " + Math.atan(1));          System.out.println("π/2的角度值:" + Math.toDegrees(Math.PI/2));          System.out.println(Math.PI);      }  }

public class Main {     public static void main(String[] args) {       double[] nums = { 1.4, 1.5, 1.6, -1.4, -1.5, -1.6 };       for (double num : nums) {         test(num);       }     }       private static void test(double num) {       System.out.println("Math.floor(" + num + ")=" + Math.floor(num));       System.out.println("Math.round(" + num + ")=" + Math.round(num));       System.out.println("Math.ceil(" + num + ")=" + Math.ceil(num));     }   }

 

转载于:https://www.cnblogs.com/tszr/p/10960149.html

你可能感兴趣的文章
五一 DAY 4
查看>>
关于System.__ComObject一些问题
查看>>
java stringbuffer二
查看>>
[hihoCoder] 拓扑排序·一
查看>>
(转)接口测试用例设计(详细干货)
查看>>
js Math对象方法 (个人学习笔记)
查看>>
helm-chart-2-chart结构和简单模板
查看>>
转载Repository 和Unit of work的使用说明
查看>>
【译】SSH隧道:本地和远程端口转发
查看>>
win8.1安装Python提示缺失api-ms-win-crt-runtime-l1-1-0.dll问题
查看>>
图片点击轮播(三)-----2017-04-05
查看>>
【乱搞】【AOJ-574】爱就大声说出来
查看>>
Clojure编写一个阶乘程序 使用递归
查看>>
【转载】Vim查找替换及正则表达式的使用
查看>>
【进程线程与同步】5.3 创建与联接线程
查看>>
判断两个字符串是否相等【JAVA】
查看>>
谈谈我是怎么学习PHP的(一)
查看>>
直播技术细节3
查看>>
《分布式服务架构:原理、设计于实战》总结
查看>>
java中new一个对象和对象=null有什么区别
查看>>