Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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(String.valueOf(i));
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement