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 trialDaniel Smithson
1,076 PointsThis wasnt taught in the tutorial! What? Remainder operator?
What is this about? I looked online but without seeing it used in the tutorial... im not sure how it is to be written 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
3 Answers
miikis
44,957 PointsHey Daniel,
The challenge is referring to the modulo operator — which is the percent (%) sign. The modulo operator's function is to divide two numbers — but instead of returning the result of the division — it returns the remainder.
The challenge asks you to find the remainder of value and divisor and assign the result to a constant named result:
// Enter your code below
let value = 200
let divisor = 5
let result = value % divisor
Then it asks you to store a boolean value — whether or not the result was zero, meaning there was no remainder — in a constant named isPerfectMultiple:
// Enter your code below
let value = 200
let divisor = 5
let result = value % divisor
let isPerfectMultiple = result == 0
David Alvarez
2,689 PointsI´m getting error with the code you show us
miikis
44,957 PointsWhat error are you getting? Where are you getting the error? In Xcode? Workspaces?
David Alvarez
2,689 PointsSolved. I had the same code as you showed but it didn´t work. I found out there was a single white space in my code.