-
Notifications
You must be signed in to change notification settings - Fork 0
/
egg26.java
70 lines (65 loc) · 2.08 KB
/
egg26.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
69
70
/*
* 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 luco.java_egg_1;
import static java.lang.Math.pow;
import java.util.Scanner;
/**
*
* @author Usuario
*/
public class egg26 {
/**
RE AL PEDO ESTE EJERCICIO ADIOS
*/
public static void main(String[] args) {
int[] numeros = {0, -2, 4, 2, 0, 2, -4, -2, 0};
System.out.println("Ingrese el orden de la matriz");
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
int[][] matriz = new int[n][n];
int[][] matrizT = new int[n][n];
int contador = 0;
for(int i = 0; i < n; i++) {
for(int j = 0; j < n; j++) {
System.out.println("Ingrese la posicion: " + contador);
matriz[i][j] = scan.nextInt();
contador += 1;
}
}
for(int i = 0; i < n; i++) {
for(int j = 0; j < n; j++) {
matrizT[i][j] = matriz[j][i];
}
}
contador = 0;
for(int i = 0; i < n; i++) {
for(int j = 0; j < n; j++) {
if(matriz[i][j] == -matrizT[i][j]) {
contador += 1;
}
}
}
System.out.println("La matriz:");
for(int i = 0; i < n; i++) {
for(int j = 0; j < n; j++) {
System.out.print(matriz[i][j] + " ");
}
System.out.println("");
}
System.out.println("La matriz traspuesta:");
for(int i = 0; i < n; i++) {
for(int j = 0; j < n; j++) {
System.out.print(matrizT[i][j] + " ");
}
System.out.println("");
}
if(contador == pow(n, 2)) {
System.out.println("Son matrices antisimetricas");
} else {
System.out.println("No son matrices antisimetricas");
}
}
}