admin管理员组文章数量:1487745
Math.ceil,Math.round,Math.floor区别
Math.ceil,Math.round,Math.floor区别
//向上取整 System.out.println("amt1=" + Math.ceil(71.01));
//四舍五入 System.out.println("amt2=" + Math.round(71.01));
//向下取值,直接舍弃小数点 System.out.println("amt3=" + Math.floor(71.01));
输出结果: amt1=72.0 amt2=71 amt3=71.0
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。 原始发表:2023-04-22,如有侵权请联系 cloudcommunity@tencent 删除mathsystem本文标签: Mathceil,Mathround,Mathfloor区别
版权声明:本文标题:Math.ceil,Math.round,Math.floor区别 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/shuma/1754978500a3181998.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论