Computer Science, asked by evie000, 1 month ago

Write a program to accept radius and height of a cylinder from the user and calculate and
display the area of cylinder using the given formula.
Area = πr²h, where r is radius and h is height

T = 3.14 or 22/7​

Answers

Answered by baratamakhilkumar28
0

Answer:

r,h=float(input()),float(input())

print(PI*r*r*h)

Explanation:

Similar questions