Swift fizz buzz test完了


ある文章を見て、多くのプログラミング本を読んだことがあるような子供靴は簡単なfizz buzzテストさえできないと言った.
fizz buzz testが何なのか分からないので、自分で探すことをお勧めします.
テスト要件は、次の条件を満たすコードを作成することです.
Write a program that prints the numbers from 1 to 100. But
 for multiples of three print “Fizz” instead of the number
 which are multiples of both three and five print 
 “FizzBuzz”.

もっと一般的に言えば、
For each integer between 1 and 100, inclusive:
If the number is divisible by '3', then print "Fizz"
If the number is divisible by '5', then print "Buzz"
If the number is divisible by both '3' and '5', then print "FizzBuzz"
Otherwise, print the number.

当猫用Swiftのソリューションは以下の通りです.
for x in 1...100{
    if x % 3 == 0 && x % 5 == 0{
        print("FizzBuzz")
    }else if x % 3 == 0{
        print("Fizz")
    }else if x % 5 == 0{
        print("Buzz")
    }else{
        print(x)
    }
}

まあ、私は超簡単だと認めています...私は退屈です...;[