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

15 lines
304 B
C++
Raw Normal View History

2021-07-15 11:12:52 +00:00
#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;
}