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发布者:admin,转转请注明出处:http://www.yc00.com/web/1754978492a5223736.html
评论列表(0条)