Guest User

Untitled

a guest
Jan 10th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6. int a = 1;
  7. for (int i=1; i<101; i++) {
  8. if (a % 15 == 0) {
  9. System.out.println("FizzBuzz");
  10. }
  11. else if (a % 3 == 0) {
  12. System.out.println("Fizz");
  13. }
  14. else if (a % 5 == 0) {
  15. System.out.println("Buzz");
  16. }
  17. else {
  18. System.out.println(a);
  19. }
  20. a++;
  21. }
  22. }
  23. }
Add Comment
Please, Sign In to add comment