-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaximaMinima.java
60 lines (47 loc) · 1.34 KB
/
MaximaMinima.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
59
package Arrays;
import java.util.Scanner;
public class MaximaMinima {
static Scanner sc = new Scanner(System.in);
static int count = sc.nextInt();
static int arr [] = new int [count] ;
public static int max(){
int temp ;
for (int i = 0; i < count; i++)
{
for (int j = i + 1; j < count; j++)
{
if (arr[i] > arr[j])
{
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}
return arr[count-1];
}
public static int min() {
int temp ;
for (int i = 0; i < count; i++)
{
for (int j = i + 1; j < count; j++)
{
if (arr[i] > arr[j])
{
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}
return arr[0];
}
public static void main (String[]args) {
System.out.println("ENTER ARRAY ELEMENTS ");
for (int i=0;i<count;i++) {
arr[i]=sc.nextInt();
}
System.out.println("MAXIMUM : "+max());
System.out.println("MINIMUM : "+min());
}
}