Skip to content

Instantly share code, notes, and snippets.

@MohammedRashad
Created November 20, 2016 20:34
Show Gist options
  • Save MohammedRashad/a24873655a9253e8a695078144be7fbe to your computer and use it in GitHub Desktop.
Save MohammedRashad/a24873655a9253e8a695078144be7fbe to your computer and use it in GitHub Desktop.
FizzBuzz Interview question in Java
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%5 == 0)
System.out.println("Buzz");
else if (i%3 == 0)
System.out.println("Fizz");
else
System.out.println(i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment