Skip to content

Instantly share code, notes, and snippets.

@Layoric
Created August 9, 2017 02:03
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save Layoric/145bdebc1144e2ae8103483557ba8efb to your computer and use it in GitHub Desktop.
Create an application that:
1. Loops 100 times
2. Pauses for 200ms each loop
3. Writes 'Fizz' to the console when loop count is divisable by 2
4. Writes 'Buzz' to the console when loop count is divisable by 5
5. Writes 'FizzBuzz' to the console when loop count is divisable by both
Extra
Setup project to write a unit test using NUnit, walk through project steps you need to enable this.
This is not a brain teaser, you don't have to get everything working, this is just to see your process :)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment