Java Math类的基本用法

一、基本常用的Math类方法

Math.abs() - 返回参数的绝对值。

参数可以是 int, float, long, double, short, byte类型

1 public static void main(String args[]){
2         Integer a = -8;
3         double d = -100;
4         float f = -90;    
5                         
6         System.out.println(Math.abs(a));  //8
7         System.out.println(Math.abs(d));  //100.0   
8         System.out.println(Math.abs(f));  //90.0 
9     }

 

 

 

文章参考:http://www.51gjie.com/java/185.html & 菜鸟教程

上一篇:mysql 获取离时间比较近的一条数据


下一篇:7重学C++之【综合案例:通讯录管理系统】