mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 16:18:48 +00:00
18 lines
301 B
C++
18 lines
301 B
C++
|
#include <iomanip>
|
||
|
#include <iostream>
|
||
|
|
||
|
using std::cin;
|
||
|
using std::cout;
|
||
|
const char endl = '\n';
|
||
|
|
||
|
const double pi = 3.14;
|
||
|
|
||
|
double r;
|
||
|
|
||
|
int main() {
|
||
|
std::ios::sync_with_stdio(false);
|
||
|
cin >> r;
|
||
|
cout << std::fixed << std::setprecision(5) << 4.0 / 3.0 * pi * r * r * r << endl;
|
||
|
return 0;
|
||
|
}
|