Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- setlocale(LC_ALL, "Russian");
- int size = 0;
- int i;
- cout << "Данная программа позволяет найти произведение элементов , стоящих на нечётных местах" << endl;
- cout << "Введите количество элементов массива" << endl;
- cin >> size;
- int* arr = new int[size];
- for (i = 0; i < size; i++) {
- cout << "Введите элемент №" <<i+1 << endl;
- cin >> arr[i];
- }
- cout << "\nВаш массив: ";
- int comp = 1;
- for (i = 0; i < size; i++) {
- cout << arr[i] << " ";
- if ((i + 1) % 2 == 1) {
- comp = comp * arr[i];
- }
- }
- cout << "\nПроизведние элементов , стоящих на нечётных местах равно " << endl<< comp;
- delete[] arr;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement