#include
#include
using namespace std;
int main(){
int a[16];
int i=0,c;
for(i; i<16; i++){<br> a[i]=rand()%40+10;
cout<<a[i]<<' ';<br> }
i=0;
for(i; i<4; i++){<br> c=a[i];
a[i]=a[7-i];
a[7-i]=c;
}
for(i=8; i<12; i++){<br> c=a[i];
a[i]=a[23-i];
a[23-i]=c;
}
cout<<endl;<br> for (i=0; i<16; i++){<br> cout<<a[i]<<' ';<br> }
return 0;
}
Вроде правильно, проверь. Вопросы, недочеты в ЛС