Java math.round

Java Math.round函数怎么使用

小亿
142
2023-08-14 19:28:59
栏目: 编程语言

Math.round函数是Java的一个数学函数,用于四舍五入取整数。

Math.round函数有两种用法:

  1. 对于float或double类型的参数:

语法:Math.round(float/double value)

返回值:long类型的四舍五入后的整数。

例如:

float f = 3.14f;
double d = 5.6789;
long roundedF = Math.round(f); // 将3.14四舍五入为3
long roundedD = Math.round(d); // 将5.6789四舍五入为6
  1. 对于其他数据类型的参数:

语法:Math.round(int/long value)

返回值:int类型的四舍五入后的整数。

例如:

int i = 10;
long l = 15;
int roundedI = Math.round(i); // 将10四舍五入为10
int roundedL = Math.round(l); // 将15四舍五入为15

注意事项:

希望以上内容能对你理解Java Math.round函数有所帮助!

0
看了该问题的人还看了