English, asked by saurabh5355, 4 months ago

write algorithm and draw flowchart to, find the product if three number​

Answers

Answered by Dhaarini22
0

Answer:

hey!!.. hope dis helps<3

Explanation:

Here is how it could be implemented in Fortran 95:

program SumAndProduct

real number1, number2, number3, total, product

print *, "Enter first number"  

read *, number1

print *, "Enter second number"

read *, number2

print *, "Enter third number"

read *, number3

total = number1 + number2 + number3

product = number1 * number2 * number3

print *, "The sum of the three numbers is ", total

print *, "The product of the three numbers is ", product

end program SumAndProduct

Similar questions