ejercicios en java #6
//Dada las matrices :MAtrizA=[A]5*4 MAtrizB=[B]4*5:Realñizar el producto de las matrices considerando que //el producto de 2 matrices es posible; cuando el número de columnas de la matriz A es igual al número de filas
// de la MAtriz B: LA matriz producto tendrán el mismo número de filas de la Matriz A e igual número de columnas de la Matriz B.
import java.io.*;
class propuesto6{
public static void main( String args[] )throws IOException
{
BufferedReader in=new BufferedReader (new InputStreamReader(System.in));
int [][] matrizA=new int [5][4];
int [][] matrizB=new int [4][5];
int [][] Producto=new int [5][5];
System.out.println("INGRESE LOS ELEMENTOS DE LA MATRIZ A");
for(int i=0; i<5;i++){
for(int j=0; j<4;j++){
matrizA[i][j]=Integer.parseInt(in.readLine());
}
}
System.out.println("INGRESE LOS ELEMENTOS DE LA MATRIZ B");
for(int k=0;k<4;k++){
for(int z=0;z<5;z++){
matrizB[k][z]=Integer.parseInt(in.readLine());
}
}
for(int h=0;h<5;h++){
for(int t=0;t<5;t++){
Producto[h][t]=0;
for(int k=0; k<4;k++){
Producto[h][t]=Producto[h][t]+matrizA[h][t]+matrizB[k][t];
}
}
}
for(int a=0;a<5;a++){
for(int b=0;b<4;b++){
System.out.println(matrizA[a][b]);
}
}
for(int c=0;c<4;c++){
for(int d=0;d<5;d++){
System.out.println(matrizB[c][d]);
}
}
for(int g=0;g<5;g++){
for(int s=0;s<5;s++){
System.out.println(Producto[g][s]);
}
}
}
}
No hay comentarios:
Publicar un comentario
Tienes dudas y consultas sobre como posicionar una pagina web en google en primeros lugares.
Consulta con Nosotros :