Computer Science, asked by sreynochkevil5oo, 5 hours ago

write program Python needs an input representing the radius of a circle it calculate the surface of the circle , then print the result of surface

Answers

Answered by niveshparashar1983nk
0

from math import pi r = float(input ("Input the radius of the circle : ")) print ("The area of the circle

plz mark me as BRAINLIEST plz plz plz

Answered by rathiakshay907
0

r=int(input ("enter radius"))

area=3.14*r*r

print(area)

then,run program

Similar questions