//MV C++ 2010
#include
#include
using namespace std;
int main()
{
//srand(time(NULL));
int a[7][7]={};
int i, j;
int sum=0;
for (i=0; i<7; i++)<br> for (j=0; j<7; j++) a[i][j]=rand();<br>
for (i=0; i<7; i++) sum+=a[i][i];<br> cout<<"Сумма элементов побочной диагонали: "<<sum<<endl;<br>return 0;
}