input fine numbers and print their Sum
difference and product in algorithm and flowchart
Answers
Answered by
1
Answer:
Algorithm:
In this algorithm a b c d e are integer variables and sum , product are also two integer variable to calculate sum and product.
1. START
2. Get number a,b,c,d,e
3. sum ⟵ a+b+c+d+e
4. product ⟵ a*b*c*d*e
5. Display sum and product
6. END
Similar questions