Ответ:
#include <stdio.h>
#include <math.h>
int main(void)
{
double x;
scanf("%lf", &x);
double y = (atan(pow(x, 2)) + cos(sqrt(sin(pow(x, 2 * x)))));
printf("%lf", y);
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#include <stdio.h>
#include <math.h>
int main(void)
{
double x;
scanf("%lf", &x);
double y = (atan(pow(x, 2)) + cos(sqrt(sin(pow(x, 2 * x)))));
printf("%lf", y);
return 0;
}