-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathBiggestElementOfSecondaryDiagonalInMatrix.java
58 lines (58 loc) · 1.57 KB
/
BiggestElementOfSecondaryDiagonalInMatrix.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
//WAP in java to define a method to return the biggest element of Secondary diagonal in matrix.
import java.util.Scanner;
public class BiggestElementOfSecondaryDiagonalInMatrix{
public static void main(String[] args) {
int mat[][] = readMatrix();
displayMatrix(mat);
int big = biggestElementOfSecondaryDiagonalInMatrix(mat);
System.out.println("The biggest element of Secondary Diagonal In Matrix is : "+big);
}
public static int[][] readMatrix()
{
Scanner sc = new Scanner(System.in);
System.out.println("Enter the number of rows you want : ");
int r = sc.nextInt();
System.out.println("Enter the number of column you want : ");
int c = sc.nextInt();
int mat[][] = new int[r][c];
System.out.println("Enter the "+r*c+" elements row wise : ");
for(int i=0;i<mat.length;i++)
{
for(int j=0;j<mat[i].length;j++)
{
mat[i][j] = sc.nextInt();
}
}
return mat;
}
public static void displayMatrix(int mat[][])
{
System.out.println("The user entered matrix is : ");
for(int i=0;i<mat.length;i++)
{
for(int j=0;j<mat[i].length;j++)
{
System.out.print(mat[i][j]+" ");
}
System.out.println();
}
}
public static int biggestElementOfSecondaryDiagonalInMatrix(int mat[][])
{
int big = mat[0][mat[0].length-1];
for(int i=0;i<mat.length;i++)
{
for(int j=0;j<mat[i].length;j++)
{
if(i+j==mat.length-1)
{
if(mat[i][j]>big)
{
big = mat[i][j];
}
}
}
}
return big;
}
}