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

C# C# Basics (Retired) Perform Order of Operations

modulus

Hello, I'm trying to find out how modulus works, I haven't been able to find a simple answer to my question. How does it operate, what does it do to extract 10 out 70 % 30 as an example? Would be really glad if someone could help me out with this one with basic English. Thank you.

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! My guess is you probably remember learning division a long time ago. When you first began, the teachers likely taught you to write your answers as 2 1/2 instead of 2.5, right? The modulus of 5 % 2 would be 1. Five divided by two results in a remainder of 1. It's the remainder we're after here.

So in your example, 70 % 30, 10 is the remainder of 70 divided by 30. 70 divided by 30 results in 2 with a remainder of 10. Two times 30 is 60. 70 minus 60 is 10.

Among other things, this is commonly used to check if a number is even or odd. Any number that is evenly divisible by two is said to be even. Thus, you can check for num % 2 == 0. If that is true, then the number is even. Otherwise, it's odd.

Hope this helps! :sparkles:

Thank you Jennifer, this made sense. It was as simple as that and yet some explanations online made it seem so over complicated.