Skip to content

Instantly share code, notes, and snippets.

@shoheikawano
Created December 3, 2013 14:05
Show Gist options
  • Save shoheikawano/7769613 to your computer and use it in GitHub Desktop.
Save shoheikawano/7769613 to your computer and use it in GitHub Desktop.
FizzBuzz書いてみた
package kata;
public class fizzbuzz {
public static void main(String[] args) {
for (int i = 1; i <= 100; i++) {
if(i % 15 == 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