-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecMin.java
More file actions
51 lines (38 loc) · 1.18 KB
/
secMin.java
File metadata and controls
51 lines (38 loc) · 1.18 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
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class secMin {
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 min = Integer.MAX_VALUE;
for(int i=0;i<a.length;i++)
{
if(min > a[i])
{
min =a[i];
}
// min = Math.min(min, a[i]);
}
int secmin = Integer.MAX_VALUE;
for(int i=0;i<a.length;i++)
{
if(a[i] > min)
{
if(secmin > a[i])
{
secmin = a[i];
}
// secmax = Math.max(secmax, a[i]);
}
}
System.out.print("\nThe sencond largest element in the array: ");
System.out.println(secmin);
}
}