Created
December 2, 2012 14:26
-
-
Save ollieglass/4188976 to your computer and use it in GitHub Desktop.
Pythonic Java FizzBuzz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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) ;}}}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My contribution to @swinton's A non-programmer’s solution to “Fizz Buzz”