Предмет:
ИнформатикаАвтор:
elliotbensonОтвет:
#include <iostream>
using namespace std;
int main() {
int n;
cout << "Enter the size of the array: ";
cin >> n;
int arr[n];
cout << "Enter " << n << " integers: ";
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
int difference = arr[0] - arr[n - 2];
cout << "The difference between the first and penultimate element is: " << difference << endl;
return 0;
}
Автор:
evelincrosbyДобавить свой ответ
Предмет:
МатематикаАвтор:
thompsonОтветов:
Смотреть
Предмет:
АлгебраАвтор:
traceaguirreОтветов:
Смотреть
Предмет:
АлгебраАвтор:
rumplestiltskinОтветов:
Смотреть