D - Круг
unknown
c_cpp
2 years ago
225 B
10
Indexable
#include <bits/stdc++.h>
using namespace std;
int main() {
    double r;
    cin >> r;
    const double pi = 3.14;
    double area = pi * r * r;
    cout << fixed << setprecision(9) << area;
    return 0;
}
Editor is loading...
Leave a Comment