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 trialJintao 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,603 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.