Тема: Обчислити математичний вираз використовуючи C++
#include <stdio.h>
#include <conio.h>
#include <math.h>
int main ();
{
printf("input 3 numbers:\n";
double x, y, f, z;
scanf_s("%lf%lf%lf", &x, &y, &z);
f = (pow(y + pow(x - 1, 1.0 / 3.0), 1.0 / 4.0)) / fabs(x - y) * (sqrt(sin(z)) + tan(z));
printf("f=%f/n", f);
getchar();
return 0;
}