0

我想像这样在我的程序中打印结果:06:03在 Visual Basic 6 中如何在数字前添加“0”

m=6
h=3 
print m;" : ";h
4

1 回答 1

10

像这样?

你必须使用Format()

m = 6
h = 3

Debug.Print Format(m, "00"); " : "; Format(h, "00")

输出:06:03

于 2013-03-29T20:09:46.840 回答