Answered You can hire a professional tutor to get the answer.
Algorithm : Design a While loop that lets the user enter a number. The number should be multiplied by 10, and the result stored in a variable named...
Algorithm :
Design a While loop that lets the user enter a number. The number should bemultiplied by 10, and the result stored in a variable named product. The loopshould iterate as long as product contains a value less than 100.
Programming1. Sum of NumbersDesign a program with a loop that asks the user to enter a series of positive numbers.The user should enter a negative number to signal the end of the series. After all the positive numbers have been entered, the program should display their sum.
2. Celsius to Fahrenheit TableDesign a program that displays a table of the Celsius temperatures 0 through 20 and their Fahrenheit equivalents. The formula for converting a temperature from Celsius to Fahrenheit is where F is the Fahrenheit temperature and C is the Celsius temperature. Yourprogram must use a loop to display the table.