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

Help !

Help !

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

// Task 2 - Enter your code below
Keli'i Martin
Keli'i Martin
8,227 Points

I'd like to help, but what exactly do you need help with? I could just give you the answers, but that won't help you learn this as much as explaining exactly what it is you're not understanding.

1 Answer

Hi Yasser,

Step 1 is asking for you to use the remainder operator (%) on the constants of 'value' and 'divisor'. Then assign that value to a new constant called 'result'.

// Task 1 - Enter your code below let result = value % divisor

Step 2 is asking for you to take that 'result' constant and use the compare operator (==) and compare it to 0. Then assign it to a new constant called 'isPerfectMulitple'.

 // Task 2 - Enter your code below
let isPerfectMultiple = result == 0 

Hope this helps. Happy coding.

Michael J