Question: IN C++ PLEASE THANK YOU!! (1) Write a while loop that lets the user enter a number. The number should be multiplied by 10, and
IN C++ PLEASE THANK YOU!!
(1) Write a while loop that lets the user enter a number. The number should be multiplied by 10, and the result stored in the variable product. The loop should iterate as long as the product contains a value less than 100. (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) (3) Write a for loop that displays the following set of numbers: 90 100 (4) Write a loop that asks the user to enter a number. The loop should iterate 10 times and keep a running total of the numbers entered. For example, given the following input, the final sum should be displayed: Input: 1,4,6,4,8,2,3,2,5,5 The sum of the numbers entered is 40
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
