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

2 Answers

Steven Parker
Steven Parker
229,670 Points

The "%" symbol is the modulus operator.

Modulus is the same thing as 'remainder", so it's like division except you discard what you would normally get as the result and keep just what is left over.

But you also need to observe operator precedence. Some operations are done before others, no matter where they appear on the line. That link will take you to a page with a handy chart.

It should be divided in three parts: (8*7) + (8%5) + (6/2) = 56 + 3 + 3 = 62