Advertisement
istomina_sofia

решение уравнения

Jun 25th, 2021
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #include<iostream>
  2. #include<math.h>
  3. #include<stdio.h>
  4. #include<locale>
  5. using namespace std;
  6. int main()
  7. {
  8.     setlocale(LC_ALL, "RUS");
  9.     float F, x, y;
  10.     cout << "Введите значение x" << endl;
  11.     cin >> x;
  12.     cout << "Введите значение y" << endl;
  13.     cin >> y;
  14.     F = log(abs(x - 1) + pow(y, 2)) / (atan(x - 0.75) - y) + 34.78 * ((8 - abs(x + 5 * pow(y, 2))) / pow(sin(x), 2) - ((x - 1) / 2));
  15.     cout << F;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement