Round |
首页 后退 前进 |
Round 返回数值舍入到指定小数位的值.
Round ( expression [, decimalplaces] ) 参数
返回值 返回数字四舍五入的值. 备注 参数 "小数位数" 可以是负数. 可以指定数值精确到个位, 十位或百位等. 一个数字最多显示 15 位数字, 但 "小数位数" 后面不会补零.
函数示例 示例 1 #include <MsgBoxConstants.au3> 示例 2 #include <MsgBoxConstants.au3> ----------------------------------------
该函数可以通过命令 exect 调用 参见: Int, Number, Ceiling, Floor, Random Round(3.1415,9) ; 不变 Round(123.5,-1) ; 返回120
exect=Round(-1.582,1) GLOBALEXECT<a> ;; 舍入小数点后的数字位数
exect=$var_i=Round(DirGetSize('C:\Test')/1024)||_ViewValues('$var_i') ;; 测试返回该文件夹的千字节大小
exect=$var_i=Round(DirGetSize('C:\Test')/1024/1024)||_ViewValues('$var_i') ;; 以兆字节返回测试文件夹的大小
exect=$var_i=Round(FileGetSize('C:\Test\test.txt')/1024)||_ViewValues('$var_i') ;; 以千字节的形式返回文件test.txt的大小
exect=$var_i=Round(FileGetSize('C:\Test\test.txt')/1024/1024)||_ViewValues('$var_i') ;; 以兆字节返回文件test.txt的大小
exect=$var_isize=Round(DriveSpaceTotal('C:\')/1024,2)||_ViewValues('На~~диске~~занято~~'&'$var_isize'&'~~Gb') ;; 返回Gb中使用的磁盘空间大小c:\ © Аверин Андрей для Total Commander Image Averin-And@yandex.ru |