0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 06:45:26 +00:00
OI-codes/Luogu/B2014/B2014.cpp

15 lines
304 B
C++

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