#include<iostream>
#include<conio.h>
#include<stdlib.h>
using namespace std;
int main ()
{
int M[500][500],aux,dim;
cout<<"Ingrese la dimension de la matriz: ";
cin>>dim;
cout<<endl<<"Ingrese los valores booleanos de la Matriz: "<<endl;
for(int i=0;i<dim;i++)
{
cout<<endl<<"Ingrese relacion con la fila "<<i+1<<" :";
for(int j=0;j<dim;j++)
{
cout<<endl<<"Con la columna "<<j+1<<" :";
do{
cin>>aux;
if(aux<0||aux>1)
{
cout<<"ERROR ingrese nuevamente: ";
}
}
while(aux<0||aux>1);
M[i][j]=aux;
}
system("cls");
}
cout<<endl<<endl;
system("cls");
for(int i=0;i<dim;i++)
{
for(int j=0;j<dim;j++)
{
cout<<M[i][j]<<" ";
}
cout<<endl;
}
getch();
return 0;
}
1 Response
Saludos
Write a comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.