Объяснение:
#include <stdio.h>
#include <math.h>
float f(float x, float y)
{
return 77.0 * pow(x, 12) + 0.3 * pow(x, 9) + pow(x, 6)/(pow(x, 2) + pow(y, 2)) + pow(y, 4) + pow(y, 3) - 1.111;
}
int main()
float x = 1.413, y = 0.057;
printf("f(%f, %f) = %f", x, y, f(x, y));
return 0;
Объяснение:
#include <stdio.h>
#include <math.h>
float f(float x, float y)
{
return 77.0 * pow(x, 12) + 0.3 * pow(x, 9) + pow(x, 6)/(pow(x, 2) + pow(y, 2)) + pow(y, 4) + pow(y, 3) - 1.111;
}
int main()
{
float x = 1.413, y = 0.057;
printf("f(%f, %f) = %f", x, y, f(x, y));
return 0;
}