Skip to content

Instantly share code, notes, and snippets.

@ollieglass
Created December 2, 2012 14:26
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Pythonic Java FizzBuzz
/* Write a program that prints the numbers from 1 to 100.
But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”.
For numbers which are multiples of both three and five print “FizzBuzz”.
Pythonic Java - https://gist.github.com/1725650
*/
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) ;}}}}
@ollieglass
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment