Ver Mensaje Individual
  #4 (permalink)  
Antiguo 31/05/2007, 17:38
athena_rivas
 
Fecha de Ingreso: abril-2007
Mensajes: 16
Antigüedad: 17 años, 9 meses
Puntos: 1
Asi me quedo, gracias por el comentario antoniog

Código:
#include<conio.h>
#include<iostream.h>

void main()

{

clrscr();

int arreglo1[5],arreglo2[5][3],arreglo3[3],a,i,b;

cout<<"\t\tARREGLO UNIDIMENSIONAL\n";
cout<<"\n";
cout<<"Introduce los valores para:\n";
cout<<"\n";
for(i=0;i<5;i++){
cout<<"Posicion["<<i<<"]=";
   cin>>arreglo1[i];
 }
cout<<"\n";
cout<<"\t\tARREGLO BIDIMENSIONAL\n";
cout<<"\n";
cout<<"Introduce los valores para:\n";
cout<<"\n";
for(b=0;b<5;b++){
 for(int a=0;a<3;a++)
  {
cout<<"Posicion["<<b<<","<<a<<"]=";
cin>>arreglo2[b][a];
}
cout<<"\n";
}

arreglo3[0]=arreglo1[0]*arreglo2[0][0]+
	    arreglo1[1]*arreglo2[1][0]+
	    arreglo1[2]*arreglo2[2][0]+
	    arreglo1[3]*arreglo2[3][0]+
	    arreglo1[4]*arreglo2[4][0];


arreglo3[1]=arreglo1[0]*arreglo2[0][1]+
	    arreglo1[1]*arreglo2[1][1]+
	    arreglo1[2]*arreglo2[2][1]+
	    arreglo1[3]*arreglo2[3][1]+
	    arreglo1[4]*arreglo2[4][1];


arreglo3[2]=arreglo1[0]*arreglo2[0][2]+
	    arreglo1[1]*arreglo2[1][2]+
	    arreglo1[2]*arreglo2[2][2]+
	    arreglo1[3]*arreglo2[3][2]+
	    arreglo1[4]*arreglo2[4][2];


cout<<"EL TOTAL DE LA MULTIPLICACION ES:\n";
cout<<"\n";
for(int c=0;c<3;c++){
cout<<"|"<<arreglo3[c]<<"|";
}
getch();

}