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

8 * (( 7 + 8) % 5 + 6 / 2)

Can any one help me on this

3 Answers

The answer is 24, copy past 8 * (( 7 + 8) % 5 + 6 / 2) in Google search you can get exact same answer 24.

Calculate the following:

8 * 8 ( ( 7 + 8 ) % 5 + 6 / 2) =

  1. First you start with your inner most brackets ( 7 + 8 ) which equals 15.
  2. Then you calculate 15 % 5 which equals to 0.
  3. Work out 6 /2 = 3
  4. Add 0 to 3 = 3
  5. 8 *3 = 24

24 is the Answer.

therefore 8 * 8 ( ( 7 + 8 ) % 5 + 6 / 2) = 24

Hope that helps

The answer is 192.

The Answer is 24, if you would like to do your own research on it then may I suggest coping and pasting the equation on a Google search.

Thanks.