java 向上向下取整,四舍五入
Posted 大宇007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 向上向下取整,四舍五入相关的知识,希望对你有一定的参考价值。
public class MathTest { public static void main(String[] args) { // 四舍五入 long round = Math.round(1.499); long round2 = Math.round(1.5); System.out.println(round); System.out.println(round2); // 向上取整 int s = (int)Math.ceil(1.1); System.out.println(s); // 向下取整 System.out.println((int)Math.floor(1.6)); } }
以上是关于java 向上向下取整,四舍五入的主要内容,如果未能解决你的问题,请参考以下文章