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 trial

iOS Swift 2.0 Basics Swift Operators Working With Operators

Jintao Zeng
PLUS
Jintao Zeng
Courses Plus Student 6,343 Points

I have trouble on the task 2 I think

I need to find out what is wrong(:

operators.swift
// 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
Candace Sommer-Van Auken
Candace Sommer-Van Auken
2,032 Points

Under 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.

1 Answer

Tobias Helmrich
Tobias Helmrich
31,602 Points

Hey 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! :)