Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 coutStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started