float V9(float x)
{
return pow(cos((x*x + atan(sqrt(fabs(x - 1.8 / pow(sin(pow(x*x + 1.5, 5)), 2) + pow(pow(x, 3.5), 1/3.0)), 5);
}
// nan если не существует
Відповідь:
#include <iostream>
#include <cmath>
using namespace std;
float func(float x){
float V9;
V9 = pow(cos((x * x + atan(sqrt(abs(x - 1.8 / pow(sin(pow(x*x + 1.5, 5)), 2) + pow(pow(x, 3.5), 1/3.0)), 5);
return V9;
int main(){
float x;
cout << "Enter x: ";
cin >> x;
cout << "V9 = " << func(x) << endl;
return 0;
Пояснення:
float V9(float x)
{
return pow(cos((x*x + atan(sqrt(fabs(x - 1.8 / pow(sin(pow(x*x + 1.5, 5)), 2) + pow(pow(x, 3.5), 1/3.0)), 5);
}
// nan если не существует
Відповідь:
#include <iostream>
#include <cmath>
using namespace std;
float func(float x){
float V9;
V9 = pow(cos((x * x + atan(sqrt(abs(x - 1.8 / pow(sin(pow(x*x + 1.5, 5)), 2) + pow(pow(x, 3.5), 1/3.0)), 5);
return V9;
}
int main(){
float x;
cout << "Enter x: ";
cin >> x;
cout << "V9 = " << func(x) << endl;
return 0;
}
Пояснення: