You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
381 B

#include <bits/stdc++.h>
using namespace std;
int main() {
//cin读入优化
std::ios::sync_with_stdio(false);
double r;
cin >> r;
//C语言版本保留两位小数
//printf("%.2lf\n", 4 * 3.14 * r * r * r / 3);
//C++版本保留两位小数
cout << fixed << setprecision(2) << 4 * 3.14 * r * r * r / 3 << endl;
return 0;
}