Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- #include <math.h>
- #include <iomanip>
- using namespace std;
- double solution_17(double x, double y) // Решение уравнения 17 // ODOBRENO
- {
- double t1 = cos(x) / (M_PI - (2 * x));
- double t2 = 16 * x * cos(x * y);
- return t1 + t2;
- }
- double solution_6(double x, double y) // Решение уравнения 6 // ODOBRENO
- {
- return sqrt(x * x + y * y);
- }
- int main()
- {
- //ifstream in("input.txt");
- //ofstream out("output.txt");
- double x, y;
- cout << "Enter X: "; // Пользовательский интерфейс
- cin >> x; // Ввод Х
- cout << "Enter Y: "; // Пользовательский интерфейс
- cin >> y; // Ввод Y
- double res_17 = solution_17(x, y);
- double res_6 = solution_6(x, y);
- cout << "Result of equation 17: "; // Пользовательский интерфейс
- cout << fixed << setprecision(10) << setw(20) << res_17 << endl; // Вывод результата уравнени 17
- cout << "Result of equation 6 : "; // Пользовательский интерфейс
- cout << fixed << setprecision(10) << setw(20) << res_6 << endl; // Вывод результата уравнени 6
- int tx = x;
- int ty = y;
- cout << "Result of equation 4 : "; // Пользовательский интерфейс
- (ty == 0)? (cout << "YOU SHELL NO PATH!") : (((tx % ty) == 0)? cout << (tx / ty) : cout << "YOU SHELL NO PATH!"); // Вывод результата уравнени 4
- //in.close();
- //out.close();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement