Area = (Circumference)2/(4*pi)
Chat with our AI personalities
Circumference of a circle is (pi * diameter). Area of a circle is (pi * r2).
Divide the circumference by pi, and that will give you the diameter. Then take half of the diameter (the radius), and plug it into the formula for the area of a circle (A=πr²)
circumference=r2pi
Circumference: multiply the diameter by pi (approximately 3.1416). Area: Divide the diameter by 2 to get the radius. Then use the formula area = pi x r2, where r is the radius.
echo -n "Enter the radius of a circle : "read r# use formula to get itarea=$(echo "scale=2;3.14 * ($r * $r)" | bc)# use formula to get itd=$(echo "scale=2;2 * $r"|bc)circumference=$(echo "scale=2;3.14 * $d"| bc)echo "Area of circle is $area"echo "Circumference of circle is $circumference"# ### softspy88@gmail.com