标签:style blog color div log on sp c
Round():函数返回一个数值,舍入到指定的长度或精度
eg:
--1) Round( 123.9994 , 3 ) ---->123.9990 Round( 123.9995 , 3 ) ---->124.0000 --3为需要舍入的位数 --2) Round( 123.45, -2 ) ----->100.00 --如果为负数,舍入整数部分靠近小数点部分的 --3)截断 Round( 150.75, 0 ) ----->舍入:151.00 Round( 150.75, 0, 1) ----->截断:150.00 1:默认的样式为0,如果是不为0以外的值,将会截断
标签:style blog color div log on sp c
原文地址:http://www.cnblogs.com/dingqin0525/p/3919126.html