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 Basics (retired) Operators Operator Precedence

Meg Cusack
Meg Cusack
11,448 Points

Remainder operator

In the Swift>Operators>Operator Precedence video, he says that 3 % 7 = 3 But how does 3 / 7 leave a remainder of 3?

1 Answer

Thomas Nilsen
Thomas Nilsen
14,957 Points

Because when you see the expression "3%7", ask yourself, how many times can you fit 7 in 3. The answer, is obviously none, leaving a remainder of 3 ;)

Meg Cusack
Meg Cusack
11,448 Points

OK, got it. I knew it had to be simple!

Casey Bowie
Casey Bowie
2,435 Points

Thank you! That was bugging me!