Question: The output doubles i do not know why 6.10) Write a program to model a simple calculator. Each data line should consist of the next


The output doubles i do not know why
6.10) Write a program to model a simple calculator. Each data line should consist of the next operation to be performed from the list below and the right operand. Your Accumulator's initial value SHOULD be 0. You need a function scan_data with two output parameters that returns the operator and right operand scanned from a data line. You need a function do_next_op that performs the required operation and saves the value in accumulator. do_next_op takes in the ofperand, value and accumulator. The valid operators are: + add e.g input =>+5.0 - subtract e.g input =>5.0 * multiply e.g input =>5.0 / divide e.g input =>/5.0 A power e.g input =>5.0 q quit e.g input => q 0 Note: Numbers in your output should be rounded to 1 decimal place. SAMPLE RUN \#4: / Calculator Highlight: Show Highlighted Only
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
