我想在Powershell中向上舍入到小数点后两位。
我从双“178.532033”开始。如果我使用Excel ROUNDUP函数到两个小数位,我得到“178.54”。
=ROUNDUP(A1,2)
但是,如果我在Powershell中使用Math类中包含的Round函数,我得到结果“178.53”(因为我是四舍五入而不是向上舍入):
$value = 178.532033
Write-Output = ([Math]::Round($value, 2))
有没有办法在Powershell中舍入到两位小数?