9

这是我的代码:

clear-host

function isNumeric ($x) {
try {
    0 + $x | Out-Null
    return $true
} catch {
    return $false
}
}

function output-file ($ave, $high, $low, $date)
{
write-output "Programer: Oday Sawaqed"
write-output "Class: CIS 124"
write-output "PowerShell Assignmnent"
write-output ""
Write-output ""
write-output " Current Date                    Average               Highest                        Lowest"
write-output " $date                $ave                   $high                 $low "
}


$array = @()
$hold
$n = 1

do {
$hold = read-host "number $n"
if (isNumeric $hold -eq $true){
if (999 -ne $hold) {
$array += $hold
$n = $n + 1
}
else
{
clear-host
write-host "Thank you."
write-host "The numbers you entered are:" $array
write-host "Please select a file name to save the output:"
$fileName = Read-host

$date = get-date -format "dddd, MMMM d, yyyy"
$array = $array | Sort-Object 
$ave = 
$high = $array | Select-Object -last 1
$low = $array | Select-Object -first 1

output-file $ave $high $low $date | Out-File c:\$fileName.txt
}
}
else {
write-host "Please enter a numeric value"
}
}
while (999 -ne $hold)

现在代码完美运行,我只是不知道如何将数组中的值相加来计算平均值。有人可以帮助我或给我一个提示!我知道我需要将这些值相加,然后除以 $n,我只是不知道如何添加这些值。

4

2 回答 2

28

要计算平均值,您可以使用Measure-ObjectCmdlet:

($array | Measure-Object -Average).average
于 2012-05-07T04:50:15.993 回答
3

发现添加的一种方法是这样的:


$sum = $array -join '+'
Invoke-Expression $sum

你的输出$sum只是简单地添加“+”,然后invoke-expression实际上会为你做数学。所以你的输出看起来像:


$sum
1+2+3+4+5+6+7+8+9
Invoke-Expression $sum
45
于 2012-05-07T00:26:43.983 回答