Advertisement
Lavig

Лабораторна робота №10 (Завдання 3)

Nov 9th, 2024
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.77 KB | None | 0 0
  1. #include <iostream>
  2. #include <windows.h>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     SetConsoleOutputCP(1251);
  8.     auto const n{ 7 };
  9.     int i{};
  10.     int x[n]{}, y[n]{};
  11.     for (i = 0; i < n; i++) {
  12.         while (true) {
  13.             cout << "x[" << i << "] = ";
  14.             cin >> x[i];
  15.             if (cin.fail() || cin.peek() != '\n' || x[i] < 10 || x[i] > 99) {
  16.                 cin.clear();
  17.                 cin.ignore(32767, '\n');
  18.                 cout << "Число було введено неправильно. Спробуйте ще раз!" << endl;
  19.                 continue;
  20.             }
  21.             else {
  22.                 break;
  23.             }
  24.         }
  25.     }
  26.     cout << "Вихідний масив:" << endl;
  27.     for (i = 0; i < n; i++) {
  28.         cout << x[i] << " ";
  29.         y[i] = x[i] / 10;
  30.     }
  31.     cout << endl << "Новий масив:" << endl;
  32.     for (i = 0; i < n; i++) {
  33.         cout << y[i] << " ";
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement