-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiagonalMatrix.java
More file actions
58 lines (49 loc) · 1.4 KB
/
DiagonalMatrix.java
File metadata and controls
58 lines (49 loc) · 1.4 KB
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
class GFG
{
static int MAX = 100;
// Function to print the Principal Diagonal
static void printPrincipalDiagonal(int mat[][], int n)
{
System.out.print("Principal Diagonal: ");
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
// Condition for principal diagonal
if (i == j)
{
System.out.print(mat[i][j] + ", ");
}
}
}
System.out.println("");
}
// Function to print the Secondary Diagonal
static void printSecondaryDiagonal(int mat[][], int n)
{
System.out.print("Secondary Diagonal: ");
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
// Condition for secondary diagonal
if ((i + j) == (n - 1))
{
System.out.print(mat[i][j] + ", ");
}
}
}
System.out.println("");
}
// Driver code
public static void main(String args[])
{
int n = 4;
int a[][] = {{1, 2, 3, 4},
{5, 6, 7, 8},
{1, 2, 3, 4},
{5, 6, 7, 8}};
printPrincipalDiagonal(a, n);
printSecondaryDiagonal(a, n);
}
}