Ответы
Ответ дал:
0
это вы в 11 классе проходите ?
Ответ дал:
0
#include <iostream>
#include <math.h>
using namespace std;
float Y(float x, float a);
int main(){
cout<<Y(2.75,5)<<endl<<Y(12.3,5)<<endl;
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))));
}
#include <math.h>
using namespace std;
float Y(float x, float a);
int main(){
cout<<Y(2.75,5)<<endl<<Y(12.3,5)<<endl;
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))));
}
Вас заинтересует
2 года назад
8 лет назад
8 лет назад
10 лет назад
10 лет назад
10 лет назад