Program Area_Circle;
Uses Crt;
Const
Pi = 3.1416;
Var
Radius : Integer;
Area : Real;
Begin
Clrscr;
Writeln('Area of a Circle Solver');
Writeln;
Write('Enter the Radius of the Circle : ');
Readln(Radius);
Area := (Pi * Radius * Radius);
Writeln;
Writeln('The Area of the Circle is ' ,Area:8:2,'.');
Writeln;
Writeln('Program Executed');
Readln;
End.
Hope this helps!
That would be the flex-wrap property. If set to flex-wrap: wrap; the elements in the flex container will wrap onto another line if they are too large for the current one.
Answer:
Web documents and web applications are hosted on dedicated computers known as web servers.