-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecLargestElement.java
More file actions
53 lines (38 loc) · 1.19 KB
/
secLargestElement.java
File metadata and controls
53 lines (38 loc) · 1.19 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
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class secLargestElement {
public static void main(String[] args)throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter the size of the array: ");
int size = Integer.parseInt(br.readLine());
int a[] = new int[size];
System.out.println("Enter the array element: ");
for(int i=0;i<size;i++)
{
a[i] = Integer.parseInt(br.readLine());
}
int max = Integer.MIN_VALUE;
for(int i=0;i<a.length;i++)
{
if(max < a[i])
{
max =a[i];
}
// max = Math.max(max, a[i]);
}
int secmax = Integer.MIN_VALUE;
for(int i=0;i<a.length;i++)
{
if(a[i] < max)
{
if(secmax < a[i])
{
secmax = a[i];
}
// secmax = Math.max(secmax, a[i]);
}
}
System.out.print("\nThe sencond largest element in the array: ");
System.out.println(secmax);
}
}