#include <iostream>
using namespace std;
double Y(double x){
return pow(tan(2 * pow(x,2)),2) + pow(sin(x),2) - (sqrt(abs(2 * pow(x,2))))/5;
}
signed main(){
double x;
cin >> x;
cout << Y(x);
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
using namespace std;
double Y(double x){
return pow(tan(2 * pow(x,2)),2) + pow(sin(x),2) - (sqrt(abs(2 * pow(x,2))))/5;
}
signed main(){
double x;
cin >> x;
cout << Y(x);
}