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 trialNigel Matheson
Courses Plus Student 1,166 PointsI think I'm lost again regarding this challenge
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 let result = value % divisor // Task 2 - Enter your code below let isperfectMultiple = result == 0 let IfGreaterThan =
Is there another source where I can get more information on this as its becoming a real struggle. I think the lesson has to go more in-depth. Or am I not getting it?
// 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
let result = value % divisor
// Task 2 - Enter your code below
let isperfectMultiple = result == 0
let IfGreaterThan =
3 Answers
Jeff McDivitt
23,970 PointsHi Nigel - I believe you are over thinking this one as you just need to use the >= with the assignment operator to complete the task
// 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
let result = value % divisor
// Task 2 - Enter your code below
//You are just checking if one operation is greater than or equal to another operation
//In this case it is false because anotherOperation is greater than someOperation
let isPerfectMultiple = result == 0
let isGreater = someOperation >= anotherOperation
Deneen Edwards
5,626 PointsBelow each video, under the "Teacher's Notes" section, is a link to the Swift Programming guide. Use the guide to complement the videos.
Nigel Matheson
Courses Plus Student 1,166 PointsThanks Guys