码迷,mamicode.com
首页 > 编程语言 > 详细

java基础(一)---数据类型&Math方法&强制转换

时间:2018-03-11 14:44:19      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:gre   pre   http   函数   代码   rand   随机数   com   idt   

数据类型及各种Math类方法


 

 1 public class HelloWorld {
 2     public static void main(String args[]) {
 3         //各种数据类型的熟悉掌握,强制类型转换要看级别
 4         final int var = 100;
 5         int varr = 200;
 6         float m = -21.5f;
 7         double p = 21.234;
 8         boolean judge = true;
 9         char ch = ‘a‘;
10         long num = 625;
11         short num1 = 12;
12         byte a = 1;
13         String str = "I am a great boy!";
14         
15         //算术运算依赖Math类各种静态方法
16         System.out.println(Math.abs(m));    //绝对值
17         System.out.println(Math.sin(a));        //三角函数
18         System.out.println(Math.asin(0.5));//反三角函数
19         System.out.println(Math.sqrt(var));//开平方跟
20         System.out.println(Math.cbrt(num));//开立方根
21         System.out.println(Math.round(m));//四舍五入
22         System.out.println(Math.ceil(1.5));//向上取整
23         System.out.println(Math.floor(1.9));//向下取整
24         System.out.println(Math.max(100, 50));//取大值
25         System.out.println(Math.min(12.3, 13.3));//取小值
26         System.out.println(Math.random()+1);//生成随机数
27         System.out.println(Math.pow(2, 10));//指数运算:计算        
28 a(前者)的b(后者)次幂
29         System.out.println(Math.log10(100));//对数运算
30     }
31 }        
//以上代码eclipse编译通过


 

强制类型转换


 

技术分享图片


欢迎留言讨论 ^w^!

 

java基础(一)---数据类型&Math方法&强制转换

标签:gre   pre   http   函数   代码   rand   随机数   com   idt   

原文地址:https://www.cnblogs.com/yocichen/p/8543668.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!