С++
#include "stdafx.h"
#include "conio.h"
#include
#include
using namespace std;
int main()
{
setlocale(LC_ALL, "Russian");
float L, S, R, pi(3.14);
cout << "Введите радиус." << endl;<br>cin >> R;
S = pi*pow(R, 2);
cout << "Площадь круга =" << ' ' <<S << endl;<br> L = 2 * pi*R;
cout << "Длина окружности =" << ' '<< L << endl;<br> _getch();
return 0;
}