RosettaCodeData/Task/Averages-Arithmetic-mean/PowerShell/averages-arithmetic-mean-1.ps1
2026-04-30 12:34:36 -04:00

11 lines
195 B
PowerShell

function mean ($x) {
if ($x.Count -eq 0) {
return 0
} else {
$sum = 0
foreach ($i in $x) {
$sum += $i
}
return $sum / $x.Count
}
}