Advertisement
Guest User

Untitled

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