我试图让学生的平均分数显示在Windows消息框提示,输入最大5分后,从0-100我想平均输出到提示。
学生评分列表给了我学生输入的任何数字的平均值,但仍然没有显示在消息提示中。
$NumberPattern = "[0-100]$"
do {
$StudentMark = Read-Host "Please enter Student Mark (0-100)"
$Count2++
$StudentMarkList += $StudentMark
} while ($Count2 -le $Arraysize)
$StudentMarkList
$NotifyButtons2 = $Response
# **$StudentMarkList| measure -average | select average**
Add-Type -AssemblyName PresentationCore, PresentationFramework
$NotifyButtons2 = [System.Windows.MessageBoxButton]::$StudentMarkList -bor [System.Windows.MessageBoxButton]::$StudentMarkList
1条答案
按热度按时间kiz8lqtg1#
我假设您的问题是关于如何创建
MessageBox
,所以先不考虑循环逻辑,下面是如何创建的: