当前位置:  开发笔记 > 编程语言 > 正文

如何在PowerShell中正确舍入数字

如何解决《如何在PowerShell中正确舍入数字》经验,为你挑选了1个好方法。

如标题所示,我在舍入数字时遇到一些问题。我的脚本当前如下所示:

[uint16]$Product1 = Read-Host "Enter the price of your product: "
...
#$TotalProducts contains the Value from all products together
Write-Host "You spent an amount of $TotalProducts for todays shopping."

我希望程序将数字四舍五入,以使总数不是一个荒谬的长数字。它确实可以工作,但是在我手动计算之后,我看到程序计算了其他内容。

这里的问题是程序将例如122.50舍入122,而不是123

我尝试使用以下语法,但未成功:

[math]::Round($Product1)[System.Midpoint.Rounding]::AwayFromZero) = Read-Host "Enter the price of your product: "

我是在尝试正确的方法,但只是在挑剔语法,还是这种方法完全错误?



1> 小智..:

读主机返回一个字符串。

您应该先阅读,然后四舍五入。

$Product1 = Read-Host "Enter the price of your product: "
$RoundedNumber = [math]::Round($Product1, [System.MidpointRounding]::AwayFromZero)

您现在拥有的舍入值$RoundedNumber

推荐阅读
凹凸曼00威威_694
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有