Run ID:157286

提交时间:2026-07-22 09:14:35

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ double p=3.1415926,n,v; cin>>n; v=4/3*p*n*n*n; printf("%.4lf",v); return 0; }