Guest User

Untitled

a guest
Apr 27th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. for i in 1..100
  2. if i % 3 == 0
  3. puts "Fizz"
  4. elsif i % 5 == 0
  5. puts "Buzz"
  6. elsif i % 5 == 0 && i % 3 == 0
  7. puts "FizzBuzz"
  8. else
  9. puts i
  10. end
  11. end
Add Comment
Please, Sign In to add comment