Advertisement
dxvmxnd

Untitled

Sep 21st, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. #include <iostream>
  2. #include <typeinfo>
  3. #include <cmath>
  4. using namespace std;
  5. int main() {
  6. setlocale(LC_ALL, "Rus");
  7. bool isNotCorrect = false;
  8. int x, y;
  9. do {
  10. cout << "Введите X точки M\n";
  11. cin >> x;
  12. if (cin.fail()) {
  13. isNotCorrect = true;
  14. cout << "Данные ввеены неккоректно" << endl << endl;
  15. cin.clear();
  16. while (cin.get() != '\n');
  17. }
  18. else {
  19. isNotCorrect = false;
  20. do {
  21. cout << "Введите Y точки M\n";
  22. cin >> y;
  23. if (cin.fail()) {
  24. isNotCorrect = true;
  25. cout << "Данные ввеены неккоректно" << endl << endl;
  26. cin.clear();
  27. while (cin.get() != '\n');
  28. }
  29. else {
  30. isNotCorrect = false;
  31. if ((abs(x) + abs(y)) > 1) {
  32. cout << "Число НЕ входит в ограниченную плоскость\n";
  33. }
  34. else {
  35. cout << "Число входит в ограниченную плоскость\n";
  36. }
  37. }
  38. } while (isNotCorrect);
  39. }
  40. } while (isNotCorrect);
  41. return 0;
  42. }
  43.  
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement