Answers for "count specific number in array powershell"

0

count specific number in array powershell

$grades = @($g1, $g2, $g3, $g4, $g5, $g6)

$countCredit = for($x=0; $grades -gt 50 ; $x++) { $x.count }
Write-Host "Credits Earned: " $countCredit
Posted by: Guest on November-19-2020
-1

count specific number in array powershell

$countCredit = for($x=$grade.count; $x -gt 50 ; $x++) { $grades[$x] } 
Write-Host "Credits Earned: " $countCredit
Posted by: Guest on November-19-2020

Code answers related to "count specific number in array powershell"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language