Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <windows.h>
- #include <format>
- using namespace std;
- int main()
- {
- SetConsoleOutputCP(1251);
- double y{}, x{}, h{};
- int xn{ 0 }, xk{ 3 };
- while (true) {
- cout << "Введіть крок, за яким виконувати обчислення: ";
- cin >> h;
- if (cin.fail()) {
- cin.clear();
- cin.ignore(32767, '\n');
- cout << "Крок було введено неправильно. Спробуйте ще раз!" << endl;
- continue;
- }
- else {
- break;
- }
- }
- const auto table_format = "x = {:4.2f} \t y = {:4.2f} \n";
- for (x = xn; x <= xk; x += h) {
- if (x > 2.5) {
- y = 1 - sqrt(abs(cos(2 * x)));
- }
- else if (1 <= x && x <= 2.5) {
- y = x * x - x;
- }
- else if (x < 1) {
- y = 1 + x * x;
- }
- cout << format(table_format, x, y);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement