vbscript 数学函数:FormatNumber
FormatNumber(4.33 - 4.28, 1, -2, -2, -2) //answer 0.0
FormatNumber(0.05, 1, -2, -2, -2) //answer 0.1
甚至
FormatNumber(cdbl(4.33) - cdbl(4.28), 1, -2, -2, -2) //answer 0.0
但
FormatNumber(4.34 - 4.28,1,-2,-2,-2) //answer 0.1
为什么它没有正确四舍五入?我怎样才能解决这个问题?