Skip to content

Instantly share code, notes, and snippets.

@kijuky
Created August 29, 2011 08:15
Show Gist options
  • Save kijuky/1177995 to your computer and use it in GitHub Desktop.
Save kijuky/1177995 to your computer and use it in GitHub Desktop.
ふぃずばずー
class FizzBuzz {
public static void main(String[] args) {
for (int i = 1; i <= 100; i++) {
if (i % 3 == 0) {
System.out.print("Fizz");
}
if (i % 5 == 0) {
System.out.print("Buzz");
}
if (i % 3 != 0 && i % 5 != 0) {
System.out.print(i);
}
System.out.println();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment