Computer Science, asked by sandhubabie, 18 days ago

How to find a product of three numbers in the algorithm?

Answers

Answered by subhrajit15
1
  • Start
  • Input a, b, c, product
  • product = a*b*c
  • print "product"
  • Stop
Answered by Anonymous
4

\Large{\mathtt{\underline{\green{What\;is\; algorithm?}}}}

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.

\Large{\mathtt{\underline{\red{Algorithm:-}}}}

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