Question: IN C++ WILL RATE PLEASE! (2) Write a do-while loop that asks the user to enter two numbers. The numbers should be integers. Then add
IN C++ WILL RATE PLEASE!

(2) Write a do-while loop that asks the user to enter two numbers. The numbers should be integers. Then add the two numbers together and display the sum. The user should be asked if he or she wishes to perform the operation again. If so, the loop should repeat; otherwise it should terminate. Make sure your output statements look as follows: Their sum is 3 Do you wish to do this again? (Y/N) Their sum is 6 Do you wish to do this again? (Y/N) Their sum is 8 Do you wish to do this again? (Y/N) int main() char again; int numi, num2; do // Comment out the following COUT statement BEFORE submitting cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
