Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Jintao Zeng
Courses Plus Student 6,343 PointsI have trouble on the task 2 I think
I need to find out what is wrong(:
// 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
result= 0
let isPerfectMultiple = result
1 Answer

Tobias Helmrich
31,601 PointsHey there,
you almost got it right, good job! However you shouldn't set result
to 0 manually but you should compare it to 0 with the is equal operator. Then you should assign the result of the comparison to the isPerfectMultiple
constant.
Like so:
// 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
I hope that helps! :)
Candace Sommer-Van Auken
2,032 PointsCandace Sommer-Van Auken
2,032 PointsUnder Task 1 you create a constant, result, and assign a value to get it, but then, under task 2 you assign it a value (0) to the constant. A constant's value is, well constant. You can't change it by assigning a value to it (even if it is the same value that it came out to under Task 1.