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

Milosz Drozd
Milosz Drozd
9,500 Points

i do get how 5 % 3 = ? or using % in C# arithmetics works in general?Hard to find explaination in my language aswell.

it is not really clear for me how to use %. if I have like 5 % 3 do I 5:3 =1,67... or ...

Would you guys be so kind and add few examples of how that works ? God bless ya.

2 Answers

Steven Parker
Steven Parker
229,732 Points

It's known as the "remainder" operator, and it gives you what's left over after an integer divide. So, for your example, 5 divided by 3 is 1, but with 2 "left over".

So 5 % 3 = 2. And 8 % 2 = 0 since it divides evenly. Using it with 2 as the second operand is a good way to test a number for even (0) or odd (1).