#include<iostream.h>
#include "stdio.h"
#include "conio.h"
void leer();
void diagonal();
void vectordiagonal();
int i,j,l,sw,tc,tf;
int MATRIZ[50][50],vector[50];
void main()
{
leer();
diagonal();
vectordiagonal();
}
void leer()
{
clrscr();
do{
cout<<"INGRESE EL NUMERO DE COLOMNAS: ";
cin>>tc;
}while(tc<1||tc>10);
do{
cout<<"INGRESE EL NUMERO DE FILAS : ";
cin>>tf;
}while(tf!=tc);
clrscr();
cout<<"POR FAVOR DIGITE LOS DATOS DE LA MATRIZ DE ORDEN "<<tc<<" x "<<tf<<endl<<endl;
for(i=0;i<tc;i++)
{
sw=5;
for(j=0;j<tf;j++)
{
textbackground(BLACK);
gotoxy(sw,i+5);
cin>>MATRIZ[j];
sw=sw+5;
}
}
}
void diagonal()
{
clrscr();
cout<<"LA DIAGONAL PRINCIPAL DE LA MATRIZ DE ORDEN "<<tc<<" x "<<tf<<" ES; ";
for(i=0;i<tc;i++)
{
sw = 5;
for(j=0;j<tf;j++)
{
gotoxy(sw,i+5);
if(i==j)
textcolor(CYAN);
else
textcolor(YELLOW);
cprintf("%d",MATRIZ[j]);
sw = sw + 5;
}
}
}
void vectordiagonal()
{
cout<<endl<<endl;
cout<<"EL VECTOR QUE CONTIENE LA DIAGONAL ES: "<<endl<<endl;
for(i=0;i<tc;i++)
{
for(j=0;j<tf;j++)
{
if(i==j)
{
vector[l]=MATRIZ[j];
cout<<" ";
cout<<vector[l];
}
}
}
getch();
}