Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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!!image text in transcribed

(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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions