Skip to content

Instantly share code, notes, and snippets.

@cerkit
Last active December 2, 2015 17:48
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 cerkit/123cf917d7534e3ae240 to your computer and use it in GitHub Desktop.
Save cerkit/123cf917d7534e3ae240 to your computer and use it in GitHub Desktop.
Proof that I can write code :)
for (int i = 1; i <= 100; i++)
{
if ((i % 3 == 0) && (i % 5 == 0))
{
Debug.WriteLine("FizzBuzz");
}
else if (i % 3 == 0)
{
Debug.WriteLine("Fizz");
}
else if(i % 5 == 0)
{
Debug.WriteLine("Buzz");
}
else
{
Debug.WriteLine(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment