思路:

了解格式符号的输出方式

int main(void)
{
    int r=0;
    float v=0.0f;
    scanf("%d",&r);
    v=4/3.0*3.14*r*r*r;
    printf("%.2f",v);
    return 0;
}