PowerTip: Round Numbers with PowerShell

Doctor Scripto

Summary: Easily use Windows PowerShell to round numbers.

Hey, Scripting Guy! Question How can I use Windows PowerShell to easily round numbers?

Hey, Scripting Guy! Answer Use the Round static method from the System.Math class, for example:

PS C:\> 22/7

3.14285714285714

PS C:\> [math]::Round(22/7)

3

PS C:\> 

0 comments

Discussion is closed.

Feedback usabilla icon