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

what do i do next so confused

help pls this is frustating spent 50 minitues

operators.swift
let value = 200
let divisor = 5

let someOperation = 20 + 400 % 10 / 2 - 15
let anotherOperation = 52 * 27 % 200 / 2 + 5

let result = value % divisor
help me i dont know what to do next

// Task 1 - Enter your code below

// Task 2 - Enter your code below

1 Answer

Zachary Kaufman
Zachary Kaufman
1,463 Points

So for task one it tells you to " Using the remainder operator, compute the remainder given the value and a divisor. Assign this value to a constant named result." which would mean you do

let result = value % result

and for task 2 it says "When value obtained using a remainder operator is 0, this means that the value is a perfect multiple of the divisor. Compare the value of result to 0 using the equality operator and assign the resulting value to a constant named isPerfectMultiple."

which would mean you have to do

let isPerfectMultiple = result == 0

and that's all you have to for the beginning of that challenge. I hope this helps, if I am unclear please let me know so I can rephrase.