Skip to content

Instantly share code, notes, and snippets.

@kunst1080
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunst1080/9429272 to your computer and use it in GitHub Desktop.
Save kunst1080/9429272 to your computer and use it in GitHub Desktop.
FizzBuzz in cmd.exe
for /l %i in (1,1,100) do @((set/a a=%i%3,b=%i%5)>nul & if !a!!b!==00 (echo FizzBuzz) else (if !b!==0 (echo Buzz) else if !a!==0 (echo Fizz) else (echo %i)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment