Ответ:
#include <iostream>
#include <cstdlib>
#include <cmath>
using namespace std;
int main()
{
double Y,X;
cout<<"Input X:";
cin>>X;
Y = tan ( 2 * pow (X,2) ) + pow ( (sin (X)), 2) - sqrt (abs (X)) / 5 ;
cout << "Y = " << Y;
return 0;
}
Объяснение:
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#include <iostream>
#include <cstdlib>
#include <cmath>
using namespace std;
int main()
{
double Y,X;
cout<<"Input X:";
cin>>X;
Y = tan ( 2 * pow (X,2) ) + pow ( (sin (X)), 2) - sqrt (abs (X)) / 5 ;
cout << "Y = " << Y;
return 0;
}
Объяснение: