Advertisement
DrBoat

Untitled

Apr 10th, 2020
498
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.25 KB | None | 0 0
  1. for i in 1...100 {
  2.     var needToPrint = true
  3.     if i % 3 == 0 {
  4.         print("Fizz")
  5.         needToPrint = false
  6.     }
  7.     if i % 5 == 0 {
  8.         print("Buzz")
  9.         needToPrint = false
  10.     }
  11.     if needToPrint {
  12.         print(i)
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement