Skip to content

Instantly share code, notes, and snippets.

@cointoss1973
Created July 13, 2014 07:28
Show Gist options
  • Save cointoss1973/115b1f3793bba6afeec9 to your computer and use it in GitHub Desktop.
Save cointoss1973/115b1f3793bba6afeec9 to your computer and use it in GitHub Desktop.
PowerShell で FizzBuzz
#
# FizzBuzz.ps1
#
Function Get-FizzBuzz($num)
{
$Fizz = $num % 3
$Buzz = $num % 5
if ($Fizz -eq 0 -and $Buzz -eq 0) {
return "Fizz Buzz"
} elseif ( $Fizz -eq 0) {
return "Fizz"
} elseif ( $Buzz -eq 0) {
return "Buzz"
}
return $num
}
@(1..100) | % { Get-FizzBuzz $_ | Write-Host }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment