Write to store three numbers Now calculate and display their sum and product
Answers
Answered by
0
Explanation:
The algorithm would look something like:
Prompt the user to enter three numbers
Read in/accept the three numbers and assign them to variables number1, number2, number3
Compute the variables sum and product: sum = number1 + number2 + number3, product = number1 * number2 * number 3
Print the values of the variables sum and product
Similar questions