Manual Programa Operación Con Matrices5

Páginas: 3 (515 palabras) Publicado: 19 de abril de 2012
MANUAL PROGRAMA OPERACIÓN CON MATRICES
INTEGRANTES:
CARLOS ANTONIO KOYOC FUENTES
RUBI FLOTA CABRERA

INGRESAR EL NUMERO DE COLUMNAS Y FILAS QUE EL USUARIO QUIERA QUE TENGA LAS
MATRICES

MENUPRINCIPAL QUE MUESTRA LAS OPERACIONES QUE SE PODRAN REALIZAR CON LAS
MATRICES

LA OPCION 1 Y 2 EL USUARIO PODRA INGRESAR LOS NUMEROS A LOS ELEMENTOS DE LA MATRIZ
INDICADA

LA OPCION 3 SUMARMATRICES TE MOSTRARA LAS MATRICES YA INGRESADAS Y EL RESULTADO
DE LA SUMA DE LAS MISMAS Y EN CASO DE NO HABER INGRESADO UNA MATRIZ, PEDIRA AL
USUARIO INGRESARLA. ASI MISMO ADVERTIRA AL USUARIO SI LASDIMENSIONES DE LAS
MATRICES INGRESADAS NO SON ADECUADAS PARA UNA SUMA

LA OPCION 4 HARA LO MISMO QUE LA OPCION 3 SOLO QUE MOSTRARA EL RESULTADO DE LA
MULTIPLICACION DE LAS MATRICES EN VEZ DE SUSUMA

EL USUARIO PODRA UTILIZAR LA OPCION 5 PARA PODER VER LOS ELEMENTOS YA INGRESADOS
DENTRO DE LA MATRIZ

EL LA OPCION 6 Y 7 EL USUARIO TENDRA LA POSIBILIDAD DE CAMBIAR LAS DIMENSIONES DE LAMATRIZ SIN TENER QUE CERRAR Y ABRIR OTRA VEZ EL PROGRAMA

LA OPCION 9 Y 10 MUESTRA LA MATRIZ TRANSPUESTA DE LAS MATRICES INGRESADAS

Y SELECCIONANDO LA OPCION 10 EL USUARIO PODRA SALIRSE DEL PROGRAMA #include
#include

/*

Universidad Del Caribe

Programa que suma y multiplica matrices dinamicamente, teniendo la opcion
de poder buscar la transpuesta de las matrices capturadas.Integrantes:
Koyoc Fuentes Carlos Antonio
Flota Cabrera Rubi

*/

int acol,afil,bcol,bfil;
int op;
int b1,b2;
int **A;
int **B;
int **SUM;
int **MULT;
int **TRANSA;
int **TRANSB;
voidingresarango();
void menu();
void capurarA();
void capurarB();

void imprimeA ();
void imprimeB();
void suma();
void multiplicacion ();
void vericarmatrices();
void validacaptura();
voidcambiatamanoA();
void cambiatamanoB();
void transpuestaA();
void transpuestaB();

int main ()
{
b1=0;
b2=0;

ingresarango();

menu();

while(op!=10)
{
switch(op)
{
case 1:capurarA();...
Leer documento completo

Regístrate para leer el documento completo.

Estos documentos también te pueden resultar útiles

  • manual de operacion
  • Manual de operacion
  • Manuales De Operación
  • manual de operacion
  • Manual De Operacion
  • Manual operacion
  • Manual De Operacion
  • MANUAL DE OPERACIÓN

Conviértase en miembro formal de Buenas Tareas

INSCRÍBETE - ES GRATIS