使用 .Net Math Class

你可以使用 .Net Math 类进行计算([System.Math])

如果你想知道哪些方法可用,你可以使用:

[System.Math] | Get-Member -Static -MemberType Methods

以下是如何使用 Math 类的一些示例:

PS C:\> [System.Math]::Floor(9.42)
9
PS C:\> [System.Math]::Ceiling(9.42)
10
PS C:\> [System.Math]::Pow(4,3)
64
PS C:\> [System.Math]::Sqrt(49)
7