write algorithm and draw flowchart to, find the product if three number
Answers
Answered by
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
Math,
2 months ago
Physics,
2 months ago
Chemistry,
2 months ago
Math,
4 months ago
Environmental Sciences,
11 months ago