#include <conio.h>
#include <math.h>
using namespace std;
int col;
int ren;
int i;
int n;
int x;
int b[5][5];
int main()
{
ren=0;
col=0;
b[0][0]=1;
b[0][1]=1;
b[0][2]=0;
b[0][3]=0;
b[0][4]=1;
b[1][0]=0;
b[1][1]=1;
b[1][2]=1;
b[1][3]=0;
b[1][4]=1;
b[2][0]=1;
b[2][1]=1;
b[2][2]=0;
b[2][3]=1;
b[2][4]=0;
b[3][0]=0;
b[3][1]=1;
b[3][2]=1;
b[3][3]=0;
b[3][4]=0;
b[4][4]=1;
cout<<" "<<endl;
cout<<"La matriz es: "<<endl;
cout<<" "<<endl;
for(x=0;x<=1000;x++){
for(ren=0;ren<=4;ren++){
for(col=0;col<=10;col++){
cout<< b[ren][col];
}
cout<<endl;
}
}
getch();
return 0;
}
No hay comentarios:
Publicar un comentario