Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- setlocale(LC_ALL, "RUS");
- double x, y;
- bool isInCorrect;
- cout << "Данная программа определяет, принадлежит ли данная точка замкнутому множеству D, заданному системой ограничений." << endl;
- do {
- cout << " Введите координаты X, Y: ";
- cin >> x >> y;
- isInCorrect = false;
- if (cin.fail()){
- cout << "Неверные данные. Введите координаты точки:"<< endl;
- isInCorrect = true;
- cin.clear();
- while (cin.get() != '\n');
- }
- } while(isInCorrect);
- if (!(x + y > 1 && 2 * x - y > 1 && y < 0)) {
- cout << "Да, принадлежит.";
- } else {
- cout << "Нет, не принадлежит.";
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement