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

Thomas Matlock
Thomas Matlock
2,900 Points

I have tried just about everything, please help

8 * 7 + % 5 + 6 / 2 =

Kyle Jensen
Kyle Jensen
Courses Plus Student 6,293 Points

Do you have a clear understanding of the modulo operator and order of operations?

2 Answers

Firas Awad
Firas Awad
1,541 Points

Start from left to right, (*,/,%) has higher priority than (+,-) and if there were parentheses it will have higher priority and you have to do the math inside the parentheses before continuing to calculate something else.

that being said we have to calculate (8 * 7) first and then (8 % 5) and then (6 / 2) and then we add the results from left to right (8 * 7) + (8 % 5) + (6 / 2) 56 + 3 + 3 = 62

Thomas Matlock
Thomas Matlock
2,900 Points

I got it right after I posted the question:/ It was my understanding of the modulus that was wrong. Thank you, for taking the time to answer the problems