Write a program in python to enter radius of circle and print area of circle.
Note- area of rectangle= 3.14*r*r
r=int(input("Enter the radius: "))
area=3.14*r*r
print("Area of Circle is: ",area)
Output:-
Enter the radius: 4
Area of Circle is: 50.24
MS Word Questions and Answers 1- Which of the following is the valid file extension i…
Copyright @ IT Computer Guruji All Right Reserved
0 Comments