Java round() 方法

Java 教程 · 2019-02-08 12:28:32

round() 方法返回一个最接近的int、long型值。

语法

该方法有以下几种语法格式:

long round(double d)

int round(float f)

参数

  • d -- double 或 float 的原生数据类型

  • f -- float 原生数据类型

返回值

返回一个最接近的int、long型值,方法会指定返回的数据类型。

实例

实例

public class Test{ public static void main(String args[]){ double d = 100.675; double e = 100.500; float f = 100; float g = 90f; System.out.println(Math.round(d)); System.out.println(Math.round(e)); System.out.println(Math.round(f)); System.out.println(Math.round(g)); } }

编译以上程序,输出结果为:

101
101
100
90

点击查看所有 Java 教程 文章: https://www.codercto.com/courses/l/12.html

查看所有标签

计算机程序设计艺术 第2卷 半数值算法(第3版)(英文影印版)

计算机程序设计艺术 第2卷 半数值算法(第3版)(英文影印版)

(美)Donald E.Knuth / 清华大学出版社 / 2002-09-01 / 83.0

计算机程序设计艺术:英文版(第2卷 半数值算法),ISBN:9787302058151,作者:(美)Donald E. Knuth著一起来看看 《计算机程序设计艺术 第2卷 半数值算法(第3版)(英文影印版)》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器