Advertisement
venik2405

lab1_4

Oct 5th, 2020
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.85 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     setlocale(LC_ALL, "Russian");
  7.     int size = 0;
  8.     int i;
  9.     cout << "Данная программа позволяет найти произведение элементов , стоящих на нечётных местах" << endl;
  10.     cout << "Введите количество элементов массива" << endl;
  11.     cin >> size;
  12.     int* arr = new int[size];
  13.     for (i = 0; i < size; i++) {
  14.         cout << "Введите элемент №" <<i+1 << endl;
  15.         cin >> arr[i];
  16.     }
  17.     cout << "\nВаш массив: ";
  18.     int comp = 1;
  19.     for (i = 0; i < size; i++) {
  20.             cout << arr[i] << " ";
  21.             if ((i + 1) % 2 == 1) {
  22.                 comp = comp * arr[i];
  23.             }
  24.     }
  25.     cout << "\nПроизведние элементов , стоящих на нечётных местах равно " << endl<< comp;
  26.     delete[] arr;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement