LAB 3:
#include<iostream>
#include<math.h>
using namespace std;
const int TAM_N=3, TAM_M=3;
int QW,QE,c,d, min ,max , Elemento, Matriz[TAM_N][TAM_M],A[TAM_N][TAM_M],B[TAM_N][TAM_M];
void ingreso ();
void lectura ();
int maximo ();
int minimo();
int suma();
int determinante();
int main()
{
// 1) DECLARACIONx
int opcion;
do
{
cout<<"\n ******************* MENU ******************** \n\n";
cout<<" 1) Campo Magnetico EN MATRIZ \n ";
cout<<"2) Largo del campo Magnetico \n ";
cout<<"3) Maxima intensidad del campo magnetico \n ";
cout<<"4) Minima intensidad del campo magnetico \n ";
cout<<"5) Suma de voltajes \n ";
cout<<"6) DETERMINANTE DE UNA MATRIZ\n ";
cout<<" DIGITE <0> PARA SALIR \n\n ";
cout<<"********************************************************* \n\n";
cout<<" INGRESE UNA OPCION : "; cin>>opcion;
switch (opcion)
{
case 1:
{
cout<<"\n ****************Campo Magnetico EN MATRIZ******************\n\n";
ingreso ();//LLAMADO
cout<<endl;
cout<<" ********************************************************* \n\n";
}//FIN DEL CASO 1
break;
case 2:
{
cout<<"\n ************ Largo del campo Magnetico ***********\n\n";
lectura ();//LLAMADO
cout<<endl;
cout<<" ********************************************************* \n\n";
}//FIN DEL CASO 2
break;
case 3:
{
cout<<"\n ****************** Maxima longitud del campo magnetico******************\n\n";
maximo ();//LLAMADO
cout<<endl;
cout<<"\n ********************************************************* \n\n";
}//FIN DEL CASO 3
break;
case 4:
{
cout<<"\n ****************** Minima longitud del campo magnetico********************\n\n";
minimo();//LLAMADO
cout<<endl;
cout<<"\n ********************************************************* \n\n";
}//FIN DEL CASO 4
case 5:
{
cout<<"\n ************ SUMA DE Voltajes**************\n";
suma();//LLAMADO
cout<<endl;
cout<<"\n ********************************************************* \n\n";
}//FIN DEL CASO 5
break;
case 6:
{
cout<<"\n **************determinante de la matriz**************\n\n";
determinante();
cout<<endl;
cout<<endl;
cout<<" ********************************************************* \n\n";
}//FIN DEL CASO 6
break;
} // FIN DEL SWITCH
}
while (opcion !=0);
cout<<endl; cout<<"\n";
system("pause");
return 0;
} // FIN DEL PROGRAMA
//ZONA DE DESARROLLO
void ingreso ()
{
for (QW=1;QW<=TAM_N;QW++)
for (QE=1;QE<=TAM_M;QE++)
{
cout<<" INGRESE EL ELEMENTO M["<<QW<<","<<QE<<"]= ";cin>> Matriz[QW];
}
}
void lectura ()
{
for (QW=1;QW<=TAM_N;QW++)
for (QE=1;QE<=TAM_M;QE++)
cout<<" EL ELEMENTO M["<<QW<<","<<QE<<"] : "<< Matriz[QW][QE]<<endl;
}
int maximo ()
{
int max=0;
for (QW=1;QW<=TAM_N;QW++)
for (QE=1;QE<=TAM_M;j++)
{
if(Matriz[QW][QE]>max)
max = Matriz[QW][QE];
}
cout<<" EL MAXIMO DE LOS ELEMENTOS DE LA MATRIZ ES : "<<max;
}
int minimo ()
{
int min=1000;
for (QW=1;QW<=TAM_N;QW++)
for (QE=1;QE<=TAM_M;QE++)
{
if(Matriz[QW][QE]<min)
min = Matriz[QW][QE];
}
cout<<" EL MINIMO DE LOS ELEMENTOS DE LA MATRIZ ES : "<<min;
}
int suma ()
{
int suma =0;
for (QW=1;QW<=TAM_N;QW++)
for (QE=1;QE<=TAM_M;QE++)
suma=suma+Matriz[QW][QE];
cout<<" \n --------------------------------------------------------\n";
cout<<"\n LA SUMA DE ELEMENTOS DE LA MATRIZ ES :"<<suma<<endl;
}
int determinante()
{
d=((Matriz[1][1]*Matriz[2][2]*Matriz[3][3])+(Matriz[1][2]*Matriz[2][3]*Matriz[3][1])+(Matriz[1][3]*Matriz[2][1]*Matriz[3][2])-(Matriz[3][1]*Matriz[2][2]*Matriz[1][3])-(Matriz[3][2]*Matriz[2][3]*Matriz[1][1])-(Matriz[3][3]*Matriz[2][1]*Matriz[1][2]));
cout<<endl;
cout<<" LA DETERMINANTES ES :"<<d<<endl;
}
No hay comentarios:
Publicar un comentario