fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. return 0;
  7. }
Success #stdin #stdout 0.01s 5508KB
stdin
setlocale(LC_ALL, "UKR");
	double x;

	std::cout << "введiть  значення x :";
	cin >> x ;

	double y = (3*x - 2) / ((2*x +3)*(x+1)) + (sin(2*x)/(pow(x,2) + 1)*(x+2));
	cout << "Результат y:" << y << endl;
	system("pause>>void");
stdout
Standard output is empty