Skip to content

Instantly share code, notes, and snippets.

@octosteve
Created November 23, 2011 01:51
Show Gist options
  • Save octosteve/1387699 to your computer and use it in GitHub Desktop.
Save octosteve/1387699 to your computer and use it in GitHub Desktop.
Another FizzBuzz This time in Java
public class FizzBuzzer {
public static void main(String[] args) {
for(int num=1; num<=100; num++){
if (num % 3 == 0 || num % 5 == 0){
if (num % 3 == 0)
System.out.print("Fizz");
if (num % 5 == 0)
System.out.print("Buzz");
}
else
System.out.print(num);
System.out.println("");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment