三个函数ceil()floor()round()
Posted 要坚持写博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三个函数ceil()floor()round()相关的知识,希望对你有一定的参考价值。
double x;
int fx = floor(x);//向下取整函数
int cx = ceil(x);//向上取整函数
int rx = round(x);//四舍五入函数
以上是关于三个函数ceil()floor()round()的主要内容,如果未能解决你的问题,请参考以下文章
Javascript Math ceil()floor()round()三个函数的区别