Никифор
4 год назад
Составить программу вычисления значения выражения С++:Очень срочно!!!!!!!!!!
ОТВЕТЫ
Тошко
Oct 24, 2020
#include <stdio.h>
#include <math.h>
float y(float x, float a)
{
float e = 2.7182818;
return ((pow(x, 2) - a)/3) * pow(pow(sin(pow(log(x),2)),2)*pow(e, a*x)/(x * atan2(a, x)+ sqrt(pow(a, 2)+ pow(x, 2))), 2);
}
int main()
{
float x, a;
printf("Input x, an");
scanf("%f %f", &x, &a);
printf("y(%f, %f) = %fn", x, a, y(x, a));
return 0;
}
631
Смежные вопросы: