本文整理自网络,侵删。
floor 和 ceil 是 math unit 里的函数,使用前要先 Uses Math
trunc 和 round 是 system unit 里的函数,缺省就可以用。
floor 直接往小的取,比如 floor(-123.55)=-124,floor(123.55)=123
trunc 直接切下整数,比如 trunc(-123.55)=-123, floor(123.55)=123
ceil 直接往大的取,比如 ceil(-123.55)=-123, ceil(123.15)=124
round 计算四舍五入,比如 round(-123.55)=-124,round(123.55)=124
Round 是银行家算法,5 是否进位取决于 前面的一位是不是偶数,偶数,则进位,奇数,则不进位。
相关阅读 >>
Delphi 用stringhelper.split分解字符串
Delphi xe实现android 添加图片资源到应用并使用它
Delphi xe5 android 开发实现手机打电话和发短信
Delphi copyfileprogressbar 拷贝文件显示进度条
更多相关阅读请进入《Delphi》频道 >>