#include<iostream>
#include<cmath>
using namespace std;
int main()
{
    double a,b,c,d,e;
    int f;
    a=4;
    b=10;
    c=3.141593;
    d=4.0/3*c*pow(a,3);
    e=4.0/3*c*pow(b,3);
    f=pow(d+e,1.0/3);
    cout<<f;
    return 0;
}

0 comments

No comments so far...