Write pseudocode to express the following algorithm The comp
Write pseudocode to express the following algorithm: The computer user enters 3 separate numbers. The computer program then adds all three numbers and divides that by the product of all the three numbers. The computer then shows the result as part of a message (like, “The formula yields this answer: xxx”).
Solution
1.Enter all three number a,b,c
2.Add three numbers a,b,c
3.multilpy these three numbers
4.Apply formular (a+b+c)/abc
5.Store result in variable res
6.print result in console includig given text.
