0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 12:45:25 +00:00
OI-codes/AcWing/604/604.cpp

13 lines
201 B
C++
Raw Normal View History

#include <bits/stdc++.h>
using namespace std;
const double pi = 3.14159;
int main() {
double r;
cin >> r;
cout << "A=" << fixed << setprecision(4) << pi * r * r << endl;
return 0;
}