当前位置: 代码迷 >> 综合 >> java 向上、向下取整,四舍五入
  详细解决方案

java 向上、向下取整,四舍五入

热度:99   发布时间:2024-01-26 03:26:31.0
// 四舍五入long round = Math.round(2.499);System.out.println(round);long round2 = Math.round(3.5);System.out.println(round2);// 向上取整int res = (int)Math.ceil(3.1);System.out.println(res);// 向下取整
System.out.println((int)Math.floor(1.6));
  相关解决方案