Advertisement
Guest User

Untitled

a guest
May 6th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public class FizzBuzz
  2. {
  3. public static void main(String[] args)
  4. {
  5. System.out.println("FizzBuzz:");
  6. for(int i = 1; i <= 100; i++){
  7. if( ((i % 3) == 0) && ((i % 5) == 0)){
  8. System.out.print("fizzbuzz");
  9. }
  10. else if((i % 3) == 0){
  11. System.out.print("fizz");
  12. }
  13. else if((i % 5) == 0){
  14. System.out.print("buzz");
  15. }
  16. else{
  17. System.out.println(i);
  18. }
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement