Объяснение:
#include <iostream>
#include <cmath>// для степени (pow)
#include <iomanip>//для округления с точностью до n знаков после запятой(fixed<<setprecision(x))
using namespace std;
int main()
{
double x=3, y;
//cin >> x;
y=(pow(x,2) + 3*x - 4) / (2*x - 3) - (x+2)/(pow(x,2)-5*x+7);
cout << "y = " <<fixed<<setprecision(3) << y <<endl;
return 0;
}
Объяснение:
#include <iostream>
#include <cmath>// для степени (pow)
#include <iomanip>//для округления с точностью до n знаков после запятой(fixed<<setprecision(x))
using namespace std;
int main()
{
double x=3, y;
//cin >> x;
y=(pow(x,2) + 3*x - 4) / (2*x - 3) - (x+2)/(pow(x,2)-5*x+7);
cout << "y = " <<fixed<<setprecision(3) << y <<endl;
return 0;
}