✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Код програми, поданий нижче буде скомпільовано без помилок:
#include <iostream>
using namespace std;
int main()
{
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;
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!