Java——Math
2021/5/14 20:25:22
本文主要是介绍Java——Math,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、介绍
Math包含执行基本数字运算的方法,如基本指数、对数、平方根和三角函数。所提供的都是静态方法,可以直接调用。
二、abs
public static int abs(int a)
abs方法用来获取参数a的绝对值
例子
public class MathTest { public static void main(String[] args) { int a = Math.abs(-6); int b = Math.abs(7); System.out.println(a); // 6 System.out.println(b); // 7 } }
三、ceil
public static double ceil(double a)
ceil方法用来向上取整
例子
public class MathTest { public static void main(String[] args) { double a = Math.ceil(6.001); System.out.println(a); // 7.0 } }
四、floor
public static double floor(double a)
floor方法用来向下取整
例子
public class MathTest { public static void main(String[] args) { double a = Math.floor(6.999); System.out.println(a); // 6.0 } }
五、pow
public static double pow(double a, double b)
pow方法用来获取a的b次幂
例子
public class MathTest { public static void main(String[] args) { int a = 2, b = 3; System.out.println(Math.pow(a, b)); // 8.0 } }
六、round
public static long round(double a)
round方法用来四舍五入取整
例子
public class MathTest { public static void main(String[] args) { double a = Math.round(6.499); double b = Math.round(6.5); System.out.println(a); // 6.0 System.out.println(b); // 7.0 } }
这篇关于Java——Math的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略