Output.Show(Round2(3.44, 1))
想要输出为:3.4400
进阶:
如何做到”动态“保留N位小数四舍五入,不足补零
Dim N As Integer = 3
Output.Show(Round2(3.44, N))
想要输出为:3.440