Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDante Piccione
413 Pointshow do I complete "working with operators" challenge on swift 2.0 basics
i cant figure it out
// Enter your code below
let value = 200
let divisor = 5
let someOperation = 20 + 400 % 10 / 2 - 15
let anotherOperation = 52 * 27 % 200 / 2 + 5
// Task 1 - Enter your code below
// Task 2 - Enter your code below
2 Answers
Steven Deutsch
21,046 PointsHey Dante Piccione,
Check the comments in my code below for the explanation.
// Enter your code below
let value = 200
let divisor = 5
let someOperation = 20 + 400 % 10 / 2 - 15
let anotherOperation = 52 * 27 % 200 / 2 + 5
// Task 1 - Enter your code below
/* We divide value by divisor using the
remainder operator % */
let result = value % divisor
// Task 2 - Enter your code below
/* We check if the result that we calculated above
is equal to 0. We do this with the equality operator.
If the result is 0, result == 0 will be true
If the result is not 0, result == 0 will be false
We then assign the result of this (true or false)
to the constant isPerfectMultiple */
let isPerfectMultiple = result == 0
Hope this helps! Good Luck!
Raymond Carter, Jr.
iOS Development Techdegree Student 488 Pointshow did you know it was = result ==? im lost please help