如何在 PowerPoint VBA 中求平方根?
下面是一些将 A 添加到 B 的数学代码:
Sub math()
A = 23
B = 2
ABSumTotal = A + B
strMsg = "The answer is " & "$" & ABSumTotal & "."
MsgBox strMsg
End Sub
但是如何计算 ABSumTotal 的平方根? 在 PowerPoint VBA 中可以吗?
Here is some math code that adds A to B:
Sub math()
A = 23
B = 2
ABSumTotal = A + B
strMsg = "The answer is " & "$" & ABSumTotal & "."
MsgBox strMsg
End Sub
But how can I calculate a square root of ABSumTotal?
Is it possible in PowerPoint VBA?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
^
来计算X^(1/2)
编辑:添加括号
You can use use
^
to computeX^(1/2)
Edit: added parenthesis
使用:Sqr()
Use: Sqr()
您尝试过 Sqr 函数吗?
看:
http://msdn.microsoft.com/en-我们/库/h2h9y284%28VS.85%29.aspx
Have you tried the function Sqr?
See:
http://msdn.microsoft.com/en-us/library/h2h9y284%28VS.85%29.aspx