#include <iostream>
int main() {
int n;
double pred, next, sum {0};
std::cin >> n >> next;
for (int i=2; i<=n; i++) {
pred = next;
std::cin >> next;
sum += pred*next;
}
std::cout << sum << '\n';
return 0;
Объяснение:
#include <iostream>
int main() {
int n;
double pred, next, sum {0};
std::cin >> n >> next;
for (int i=2; i<=n; i++) {
pred = next;
std::cin >> next;
sum += pred*next;
}
std::cout << sum << '\n';
return 0;
}
Объяснение: