Created
November 4, 2015 23:36
-
-
Save darwind/6e5a28a0aa81b119df5e to your computer and use it in GitHub Desktop.
I read about this test on Quora and just wanted to see if I was actually a real programmer... ;-)
This file contains hidden or 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
public class FizzBuzz { | |
public static void main(String[] args) { | |
for (int i = 1; i <= 100; i++) { | |
if ((i % 5 == 0) && (i % 3 == 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