June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
12
Task/FizzBuzz/Swift/fizzbuzz-1.swift
Normal file
12
Task/FizzBuzz/Swift/fizzbuzz-1.swift
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
for i in 1...100 {
|
||||
switch (i % 3, i % 5) {
|
||||
case (0, 0):
|
||||
print("FizzBuzz")
|
||||
case (0, _):
|
||||
print("Fizz")
|
||||
case (_, 0):
|
||||
print("Buzz")
|
||||
default:
|
||||
print(i)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue