Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <typeinfo>
- #include <cmath>
- using namespace std;
- int main() {
- setlocale(LC_ALL, "Rus");
- bool isNotCorrect = false;
- int x, y;
- do {
- cout << "Введите X точки M\n";
- cin >> x;
- if (cin.fail()) {
- isNotCorrect = true;
- cout << "Данные ввеены неккоректно" << endl << endl;
- cin.clear();
- while (cin.get() != '\n');
- }
- else {
- isNotCorrect = false;
- do {
- cout << "Введите Y точки M\n";
- cin >> y;
- if (cin.fail()) {
- isNotCorrect = true;
- cout << "Данные ввеены неккоректно" << endl << endl;
- cin.clear();
- while (cin.get() != '\n');
- }
- else {
- isNotCorrect = false;
- if ((abs(x) + abs(y)) > 1) {
- cout << "Число НЕ входит в ограниченную плоскость\n";
- }
- else {
- cout << "Число входит в ограниченную плоскость\n";
- }
- }
- } while (isNotCorrect);
- }
- } while (isNotCorrect);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement