✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Ce afişează secvenţa:
int a[] = {14, 3, 7, 0, -4, 3, 10, 15, 7};
int s = 0;
for (int i = 0; i < 9; i++)
if (i % 2 == 0) s += a[i];
cout << s;