Computer Science, asked by galaxy19, 6 months ago

Program 11:- Write a program to calculate the area of a circle.

Answers

Answered by 0RPS0
5

radius = int(input('Please Enter the Radius of Circle:'))

print('Radius = ', radius)

PI = 3.1428

Area = PI * radius * radius

print('Area of Circle is: ',Area)

*Output*

Please Enter the Radius of Circle: 4

Radius = 4

Area of Circle is: 50.2848

Similar questions