#include <iostream>
#include <time.h>
const int N=20; //константный размер матрицы (можно менять)
using namespace std;
int main()
{
srand (time(NULL));
int matr[N][N], d[N][N]={0};
int i, j, n, k=0,p=0;
cout<<"Vvtdite n: ";
cin>>n;
//формируем матрицу случайных чисел
cout<<"Matrica: "<<endl;
for(i = 0; i < n; ++i)
for(j = 0; j < n; ++j)
matr[i][j]=1+rand()%15;
//печать матрицы
for(i = 0; i < n; ++i)
{
for(j = 0; j < n; ++j)
cout<<matr[i][j]<<"\t";
cout<<endl;
}
for (j=0, k=n-1; j<n&&k>=0; j++, k--)
for (i=0; i<k; i++)
matr[i][j]=0;
cout<<endl;
for(i = 0; i < n; ++i)
{
for(j = 0; j < n; ++j)
cout<<matr[i][j]<<"\t";
cout<<endl;
}
return 0;
}