私は各子供のクッキーの数を計算しようとしています。 それはエラーを与える:noOfChildrenをIntegerに変換できないのはなぜですか?
error: value of optional type 'Int?' not unwrapped; did you mean to use '!' or '?'?
let noOfCookies = 50
var noOfChildren : String = "5"
let typeOfCookies = "Oreo"
print("\(typeOfCookies) can be split among \(noOfChildren)
and each gets \(noOfCookies/Int(noOfChildren))")
ありがとう。ここで除算を使用しているので、0は使用できません。代わりに、私は使用しています 'let myInt = Int(noOfChildren)?? 1' –