In Pascal ABC. Find the radius of the circle if the area of the circle is known.

Circumference: S = pi * R ^ 2
The radius of the circle is: R = square root of (S / pi), where S = area of the circle, pi constant = 3.14

uses crt;

const
pi = 3.14;

var
R, S: real;

begin
writeln (‘Vvedite S:’);
readln (S);
R: = sqrt (S / pi);
writeln (‘Radius =’, R);
end.



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.