Skip to content

Instantly share code, notes, and snippets.

@pgkuroneru
Created April 10, 2017 13:33
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 pgkuroneru/6885e295d1c2b494d71b7cf16174f3ef to your computer and use it in GitHub Desktop.
Save pgkuroneru/6885e295d1c2b494d71b7cf16174f3ef to your computer and use it in GitHub Desktop.
FizzBuzz
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("FizzBuzz");
} else if (i % 3 == 0) {
System.out.println("Fizz");
} else if (i % 5 == 0) {
System.out.println("Buzz");
} else {
System.out.println(i);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment