Skip to content

Instantly share code, notes, and snippets.

@machinamentum
Created April 21, 2013 22:03
Show Gist options
  • Save machinamentum/5431261 to your computer and use it in GitHub Desktop.
Save machinamentum/5431261 to your computer and use it in GitHub Desktop.
public class FizzBuzz {
public static void main(String[] args) {
for(int i = 1; i <= 100; i++) {
if(i % 3 != 0 && i % 5 != 0) {
System.out.println(i);
continue;
}
if(i % 3 == 0) {
System.out.print("Fizz");
}if(i % 5 == 0) {
System.out.print("Buzz");
}
System.out.println("");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment