#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x, y;
cin >> x >> y;
cout << (3 + exp(y - 1)) / (1 + x * x * fabs(y - tan(x))) << endl;
system("pause");
return 0;
}
Объяснение:
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x, y;
cin >> x >> y;
cout << (3 + exp(y - 1)) / (1 + x * x * fabs(y - tan(x))) << endl;
system("pause");
return 0;
}
Объяснение: