✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який результат виконання наступного фрагмента коду:
const double n = 7;
double mas[n];
for (int i = n - 1; i >= 0; i--)
mas[i] = i + 2;
for (int i = 0; i<n; i++)
cout << mas[i];
return 0;