我希望打印一个构成字符串和浮点数的输出。 例如,我使用D =质量/体积计算了盒子的密度。我现在想生成一个输出,说“你的盒子的密度是**** kg /立方米”
这是如何在C
中实现的printf("The density of your box is %d\n", D);
如何在VBA上实现这一目标?
答案 0 :(得分:5)
使用MsgBox
语句和Format
函数格式化值:
MsgBox "The density of your box is " & Format(D, "0.00")
答案 1 :(得分:0)
Dim boxDensity as String
boxDensity = "The density of your box is : " & D & "kg/cubicM"
你可以随意使用变量