Question: (This program is worth 25 points) Write a C++ program that performs addition and multiplication operations. The user enters an initial number and then continues

(This program is worth 25 points) Write a C++ program that performs addition and multiplication operations. The user enters an initial number and then continues to add and multiply new user-specified numbers to the growing sum/product. At each loop repetition, the user enters x to multiply, + to add, or q for quit. If s/he chooses add or multiply, the user then specifies the additional number to be added or multiplied. You can assume the numbers are integers. The program reports the latest sum/product. Review the sample run below! Your program will be graded based on style (30%) and on proper implementation (70%) Example execution: Welcome to the math loop. Give a first number: 5 Choose an operation: + Choose a number to add: 6 5+6 11 Choose an operation: x Choose a number to multiply: 3 11x3-33 Choose an operation: x Choose a number to multiply: 2 33x2 = 66 Choose an operation: + Choose a number to add: 15 66+15-81 Choose an operation q Weare done
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
