这是一些将A添加到B的数学代码:
Sub math()
A = 23
B = 2
ABSumTotal = A + B
strMsg = "The answer is " & "$" & ABSumTotal & "."
MsgBox strMsg
End Sub
但是,如何计算ABSumTotal的平方根?
PowerPoint VBA中可以吗?
最佳答案
使用:Sqr()
strMsg = "The answer is " & "$" & Sqr(ABSumTotal) & "."
关于math - 如何在PowerPoint VBA中做平方根?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1711616/