Дан целочисленный массив с количеством элементов n. "Сожмите" массив, выбросив из него каждый второй элемент. Примечание. Дополнительный массив не использовать.
int main() { int n; cout << "Enter the size of the array: "; cin >> n;
int arr[n]; cout << "Enter the elements of the array:" << endl; for (int i = 0; i < n; i++) { cin >> arr[i]; } for (int i = 0; i < n; i++) { if (i % 2 == 0) { cout << arr[i] << " "; } } return 0;
using namespace std;
int main() {
int arr[n];int n;
cout << "Enter the size of the array: ";
cin >> n;
cout << "Enter the elements of the array:" << endl;
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
for (int i = 0; i < n; i++) {
if (i % 2 == 0) {
cout << arr[i] << " ";
}
}
return 0;
}
// Пример
// Input: 5
// 1 2 3 4 5
// Output: 1 3 5