Advertisement
gguuppyy

лаба1н1

Sep 16th, 2023 (edited)
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.94 KB | Source Code | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.     setlocale(LC_ALL, "RUS");
  6.     double x, y;
  7.     bool isInCorrect;
  8.     cout << "Данная программа определяет, принадлежит ли данная точка замкнутому  множеству D, заданному системой ограничений." << endl;
  9.     do {  
  10.         cout << " Введите координаты X, Y: ";
  11.         cin >> x >> y;
  12.         isInCorrect = false;
  13.         if (cin.fail()){
  14.             cout << "Неверные данные. Введите координаты точки:"<< endl;
  15.             isInCorrect = true;
  16.             cin.clear();
  17.             while (cin.get() != '\n');
  18.         }
  19.     } while(isInCorrect);
  20.     if (!(x + y > 1 && 2 * x - y > 1 && y < 0)) {
  21.         cout << "Да, принадлежит.";
  22.     } else {
  23.         cout << "Нет, не принадлежит.";
  24.     }
  25.     return 0;
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement