Question: help on code lab: Write an arithmetic expression that calculates the average of 1 8 and 4 6 . You may already know that: the

help on code lab:
Write an arithmetic expression that calculates the average of 18 and 46.
You may already know that:
the average of two numbers is their sum divided by 2
the symbol for division is /, thus 10 divided by 5 is written as 105
division has higher arithmetic precedence than addition
parentheses (()'s) may be used to override precedence
Thus, one correct solution would be:
18+462
Try it-- enter the above solution and click the submit button!
Even with an exercise as simple as taking the average of 18 and 46 it is still possible to make mistakes. For example:
we might forget to use parentheses:
18+462
or, we might use the wrong arithmetic operator:
18-462
Try these and see the system feedback. Also try entering some of your own incorrect answers, and see what you get.
Again, what makes programming so interesting is that there are also MANY ways to be right. For example, we could reverse the 18 and 46 and still have a correct
answer:
46+182
One of the most essential components of all learning is experimentation. Nowhere is this more true than in learning programming. Students should be encouraged to
experiment with solutions even after "getting it right".
Having submitted a typical correct solution, a student might experiment with:
18+463-1
help on code lab: Write an arithmetic expression

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Finance Questions!