Question
Add the 3 numbers and display the sum by using pseudocode
Answers
START
Declare three variables, A, B, and C
Set A = 5
Set B = 10
Set C = 15
Calculate the sum of A, B, and C
Set SUM = A + B + C
Display SUM
END
Declare three variables, A, B, and C
Set A = 5
Set B = 10
Set C = 15
Calculate the sum of A, B, and C
Set SUM = A + B + C
Display SUM
END
Related Questions
how do I write a pseudocode to find and display the largest list of positive numbers entered by the...
Write a pseudocode and algorithm that to else the user to input 10 numbers in program we display the...
Obtain two numbers from the keyboard and determine and display which (if either) is the larger of th...
Receive 3 numbers and display them in ascending order from smallest to largest using pseudocode