Help in Popsicles question with Swift | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Help in Popsicles question with Swift

Apparently, I have finished the Popsicle question in code couch with all the programming languages, except Swift. I don't know how to create an input since I'm too stupid. Here is my attempt: let a = readLine() let b = readLine() var popsicles = Int(a) var siblings: = Int(b) if popsicles % siblings == 0 { print("give away") } else { print("eat them yourself") }

26th Apr 2020, 2:50 PM
Zennatte
Zennatte - avatar
1 Answer
+ 7
Your code is good but there are small errors 😅😅 Here I corrected it: let a:String! = readLine() let b:String! = readLine() var siblings:Int! = Int(a) var popsicles:Int! = Int(b) if popsicles % siblings == 0 { print("give away") } else { print("eat them yourself") } Use ! to force unwrap variables. Basically for Swift, every variable is not of type Int or String or etc but of type Int? or String? etc therefore you need to tell it that your variables are either String (by adding the !) either Int (same !). Another small problem is that you inverted popsicles and siblings in input. The rest is perfect 👍👍
30th Apr 2020, 9:55 PM
Uni
Uni - avatar