-
Notifications
You must be signed in to change notification settings - Fork 0
/
MatrizInversa1.java
68 lines (51 loc) · 2.26 KB
/
MatrizInversa1.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package egg_ejemplos;
import javax.swing.JOptionPane;
/**
*
* @author WALTER GOMEZ
*/
public class MatrizInversa1 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
JOptionPane.showMessageDialog(null,"se pide que ingrese una matriz cuadrada, \n "
+ "filas y columnas iguales y mostrar su diagonal inversa" );
int filas = Integer.parseInt( JOptionPane.showInputDialog(null, "Digite la cantidad de filas... : "));
int columnas = Integer.parseInt( JOptionPane.showInputDialog(null, "Ingrese la cantidad de columnas... : "));
int matriz [ ] [ ] = new int [filas] [columnas];
int [] vector = new int [filas];
for (int i = 0; i < filas; i++) {
for (int j = 0; j < columnas; j++) {
int dato = Integer.parseInt(JOptionPane.showInputDialog(null,"Para completar la matriz........\n digite el numero de la posicion ["+(i+1)+" , "+(j+1)+"]" ));
matriz [i] [j] = dato;
}
}
String resultado = " ";
for (int i = 0; i < filas; i++) {
for (int j = 0; j < columnas; j++) {
resultado +=matriz[i] [j];
resultado += "\t - ";
}
resultado +="\n";
}
JOptionPane.showMessageDialog(null,"la matriz original es : \n"+ resultado);
for (int i = 0; i < matriz.length; i++) {
int cont=matriz.length;
vector[i] = matriz[i] [i];
cont--;
}
String mostrar = " ";
for (int i = 0; i < vector.length; i++) {
mostrar +=vector[i];
mostrar+= " - ";
}
JOptionPane.showMessageDialog(null, "la diagonal inversa es : "+mostrar);
JOptionPane.showMessageDialog(null,"Fin del programa ................l");
}
}