0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:25:24 +00:00
Baoshuo Ren 2021-09-15 19:46:31 +08:00 committed by Baoshuo Ren
parent 86539a48c3
commit c10aad441a
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

12
AcWing/604/604.cpp Normal file
View File

@ -0,0 +1,12 @@
#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;
}