How to find a product of three numbers in the algorithm?
Answers
Answered by
1
- Start
- Input a, b, c, product
- product = a*b*c
- print "product"
- Stop
Answered by
4
The step by step description of cօde logic that helps us to write the cօde that is known as algorithm. It is written in simple and easy language.
Here's a algorithm to find a product of three numbers:
Step 1. Start.
Step 2. Read the three numbers suppose "a", "b", "c" from the user.
Step 3. Multiply "a", "b" and "c" and store the result in product.
Step 4. Print the value of product.
Step 5. End.
Similar questions