Advertisement
Vladislav8653

laba 1_1 c++

Sep 25th, 2022 (edited)
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.59 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4.     setlocale(LC_ALL, "Russian");
  5.     bool isInCorrect;
  6.     double age = 0;
  7.     const int b = 18;
  8.     isInCorrect = false;
  9.     do {
  10.         cout << "Сколько Вам лет?" << endl;
  11.         cin >> age;
  12.         isInCorrect = false;
  13.         if (cin.fail())
  14.         {
  15.             cout << "Введённые данные некорректны! Возраст - целое положительное число." << endl;
  16.             isInCorrect = true;
  17.             cin.clear();
  18.             while (cin.get() != '\n');
  19.         }
  20.         if (!isInCorrect && (age < 1)) {
  21.             cout << "Ошибка. Введите целое положительное число." << endl;
  22.             isInCorrect = true;
  23.             cin.clear();
  24.         }
  25.         double c = age - (int)age;
  26.         if (c > 0)
  27.         {
  28.             cout << "Число не целое, повторите ввод." << endl;
  29.             isInCorrect = true;
  30.             cin.clear();
  31.             while (cin.get() != '\n');
  32.         }
  33.     } while (isInCorrect);
  34.     if (age < b) {
  35.         int c = b - age;
  36.         cout << "Вам будет предоставлено право голосовать через " << c;
  37.         if (c > 4) {
  38.             cout << " лет" << endl;
  39.         }
  40.         else if (c == 1) {
  41.             cout << " год" << endl;
  42.         }
  43.         else {
  44.             cout << " года" << endl;
  45.         }
  46.     }
  47.     else {
  48.         cout << "Вы имеете право голосовать." << endl;
  49.     }
  50.     return 0;
  51. }
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement