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.

Amir Fendi
Courses Plus Student 584 Pointsworking with operators
Again having a problem with a code .... and can't figure out the right result ... the code is right a syntax ( checked it in xcode ) but the site is returning an error message that i have to assign the results of a comparison to isGreater constant which i declared earlier and not just a bool value ...
// Enter your code below
let value = 200
let divisor = 5
let some0peration = 20 + 400 % 10 / 2 - 15
let another0peration = 52 * 27 % 200 / 2 + 5
// Task 1 - Enter your code below
let result = 5 % 7
let isPerfectMultiple = result == 0
// Task 2 - Enter your code below
let isGreater = some0peration <= another0peration
isGreater = true
1 Answer

andren
28,538 PointsThere are two problems with your code. The first one being that you have changed the name of the someOperation
and anotherOperation
(With a capital O) to some0peration
and another0peration
(with the number 0). Changing the name of constants or variables setup by the challenge is usually a bad idea and will often break the challenge.
The other problem is that you use the wrong comparison operator, you use <=
which is less than or equal to. You are meant to use >=
which is greater than or equal to.
If you fix those errors and remove your last line since it's uneccesary and incorrect since you can't reassign a constant, like this:
// 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 = 5 % 7
let isPerfectMultiple = result == 0
// Task 2 - Enter your code below
let isGreater = someOperation >= anotherOperation
Then your code will pass.