Составьте программу вычисления значения функции y= x^2+2/7x-9 на С++
#include
using namespace std;
int main() {
cout.precision(10);
double x;
cin >> x;
x=x*x+2/(7*x)-9;
cout << x;</p>
return 0;
}