Skip to content

Instantly share code, notes, and snippets.

@wlangstroth
Created March 28, 2011 19:24
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 wlangstroth/891095 to your computer and use it in GitHub Desktop.
Save wlangstroth/891095 to your computer and use it in GitHub Desktop.
Oh the humanity.
for (var i = 1; i <= 100; i++) {
if (i % 3 == 0 && i % 5 == 0) {
print "FizzBuzz";
} else if (i % 3 == 0) {
print "Fizz";
} else if (i % 5 == 0) {
print "Buzz";
} else {
print i;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment