vb是怎样输出保留小数位数的
问题描述:
vb是怎样输出保留小数位数的
如把2变为输出2.000,3.1444输出为3.144
答
Print Format(2,"0.000")
Print Format(3.1444,"0.000")