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%3 == 0)
- {
- if (i%5==0)
- System.out.println("FizzBuzz");
- else
- System.out.println("Fizz");
- }
- else
- {
- if (i%5 == 0)
- System.out.println("Buzz");
- else
- System.out.println(i);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment