将这个简单的C代码翻译成VBA

时间:2015-05-21 21:03:13

标签: c vba excel-vba output translate

我希望打印一个构成字符串和浮点数的输出。 例如,我使用D =质量/体积计算了盒子的密度。我现在想生成一个输出,说“你的盒子的密度是**** kg /立方米”

这是如何在C

中实现的
printf("The density of your box is %d\n", D);

如何在VBA上实现这一目标?

2 个答案:

答案 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"

你可以随意使用变量