提问人:skeetastax 提问时间:7/29/2021 更新时间:7/29/2021 访问量:10540
如何在 Powershell 中将 X 提升为 Y 的幂?
How do I raise X to the power of Y in Powershell?
答:
8赞
skeetastax
7/29/2021
#1
没关系,我找到了答案:
[Math]::Pow(256,3) # 256 to the power of 3 (= ~16.7 million)
14赞
Mathias R. Jessen
7/29/2021
#2
正如你所发现的,通过调用 [Math]::P ow()
可以在一定程度上准确地实现真正的指数。
对于大整数幂,您可能希望改用 [bigint]::P ow():
PS ~> [Math]::Pow(256, 20)
1.4615016373309E+48
PS ~> [bigint]::Pow(256, 20)
1461501637330902918203684832716283019655932542976
评论