Răspuns:
#include <iostream>
#include <cmath>
using namespace std;
double expresie(int x)
{
return (tan(x) + 3 * x) / (abs(pow(x, 3) - 2 * x));
};
int main()
{
int x;
cin >> x;
double y = expresie(x);
cout << "Rezultat: " << y << endl;
return 0;
}
Explicație:
Pentru screenshot, poti baga codul intr-un compilator precum codeblock sau vs code si sa dai valori lui x de la tastatura