Powershell Round Up功能

问题描述 投票:0回答:1

我想在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中舍入到两位小数?

powershell math rounding
1个回答
-1
投票
© www.soinside.com 2019 - 2024. All rights reserved.