Computer Science, asked by adityachaudhary53331, 28 days ago

wap that accept radius of a circle and calculate area of a circle
hint =area =πr^2 ​

Answers

Answered by Tanveeriqbal
0

Answer:

You want to calculate the radius of a circle by using the formula:

Area = (22/7) * r2; where r = radius of a circle

Hence the radius can be calculated as:

r = √((7 * area) / 22)

Write a program in Java to calculate and display the radius of a circle by taking area as an input.

Similar questions