Ответ: c++
#include <iostream>
#include <cmath>
int main()
{
using namespace std;
double a, x, y;
cin >> a >> x >> y;
double S = exp(a) * pow(tan(a), 2) / cos(pow(x, 2) + pow(y, 4));
cout << S;
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ: c++
#include <iostream>
#include <cmath>
int main()
{
using namespace std;
double a, x, y;
cin >> a >> x >> y;
double S = exp(a) * pow(tan(a), 2) / cos(pow(x, 2) + pow(y, 4));
cout << S;
return 0;
}