#include <iostream>
#define PI 3.14
int main()
{
using namespace std;
setlocale(LC_ALL, "ru");
double l;
cout << "Введите длину окружности: " << endl;
cin >> l;
cout << "Площадь круга: " << l * l / (4 * PI);
return 0;
}
#include <iostream>
#define PI 3.14
int main()
{
using namespace std;
setlocale(LC_ALL, "ru");
double l;
cout << "Введите длину окружности: " << endl;
cin >> l;
cout << "Площадь круга: " << l * l / (4 * PI);
return 0;
}