#include
#include
using namespace std;
float Y(float x, float a);
int main(){
cout<<Y(2.75,5)<<endl<<Y(12.3,5)<<endl;<br> system("PAUSE");
return 0;
}
float Y(float x, float a){
return ((x*x*x)/(1+exp(-3*x)) + pow(a,3*x)/( 1 + x*((a/x >= M_PI/6)?1:(-1))));
}