-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathBiggestElementInMatrix.java
56 lines (56 loc) · 1.41 KB
/
BiggestElementInMatrix.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
//WAP in java define a method to return the biggest element in the matrix.
import java.util.Scanner;
public class BiggestElementInMatrix
{
public static void main(String[] args) {
int mat[][] = readMatrix();
displayMatrix(mat);
int big = biggestElementInMatrix(mat);
System.out.println("The biggest element in the 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 biggestElementInMatrix(int mat[][])
{
int big = mat[0][0];
for(int i = 0;i<mat.length;i++)
{
for(int j=0;j<mat[i].length;j++)
{
if(mat[i][j]>big)
{
big = mat[i][j];
}
}
}
return big;
}
}