#include <iostream>
usingnamespace std;
int main()
{
int temp[5];
for (int i = 0; i < 5; i++)
temp[i] = 2 * i - 3;
for (int i = 0; i < 5; i++)
cout << temp[i] <<"__";
cout << endl;
temp[0] = temp[4];
temp[4] = temp[1];
temp[2] = temp[3] + temp[0];
for (int i = 0; i < 5; i++)
cout << temp[i] << " "<<endl;
cout << endl;
} Put the code you need help with here.