#include <stdio.h> int main() { float r; scanf("%f",&r); float V = (4/3.0)*3.14*r*r*r;//float类型注意4/3要写成4/3.0 printf("%0.2f",V); return 0; }