在VB.NET中完成

时间:2012-03-29 19:55:25

标签: vb.net math rounding

如何在VB.NET中将4.39舍入到5?

我试过了:

Math.Round(4.39, 0)

但它显示4。

1 个答案:

答案 0 :(得分:13)

使用Math.Ceiling将数字舍入到最接近的较大的整数值:

Math.Ceiling(4.39)

如MSDN链接中所述:

  

“返回大于或等于的最小整数值   指定的双精度浮点数。“