Advertisement
Lavig

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

Nov 8th, 2024 (edited)
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.02 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{ 15 };
  9.     int x[n]{}, i{};
  10.     double sum{}, arithmetic_mean{}, 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') {
  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.         if (i < n - 1) {
  30.             cout << ", ";
  31.         }
  32.         sum += x[i];
  33.         }
  34.     arithmetic_mean = sum / n;
  35.     cout << fixed;
  36.     cout.precision(2);
  37.     cout << endl << "Середнє арифметичне - " << arithmetic_mean << endl;
  38.     cout << "Новий масив:" << endl;
  39.     for (i = 0; i < n; i++) {
  40.         y[i] =  x[i] - arithmetic_mean;
  41.         cout << y[i];
  42.         if (i < n - 1) {
  43.             cout << ", ";
  44.         }
  45.     }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement