Array Implementation - Finding Maximum and Minimum Elements
Data Structure Array (Article) Array (Program)
9
Given Input:
Expected Output:
Program:
import java.util.Scanner;
public class ArrayMaxMin {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Enter number of elements: ");
int n = sc.nextInt();
int[] arr = new int[n];
System.out.println("Enter the elements: ");
for (int i = 0; i < n; i++) {
arr[i] = sc.nextInt();
}
int max = arr[0];
int min = arr[0];
for (int i = 1; i < n; i++) {
if (arr[i] > max) {
max = arr[i];
}
if (arr[i] < min) {
min = arr[i];
}
}
System.out.println("Maximum Element: " + max);
System.out.println("Minimum Element: " + min);
}
}
Output:
This Particular section is dedicated to Programs only. If you want learn more about Data Structure. Then you can visit below links to get more depth on this subject.
Program:
import java.util.Scanner; public class ArrayMaxMin { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Enter number of elements: "); int n = sc.nextInt(); int[] arr = new int[n]; System.out.println("Enter the elements: "); for (int i = 0; i < n; i++) { arr[i] = sc.nextInt(); } int max = arr[0]; int min = arr[0]; for (int i = 1; i < n; i++) { if (arr[i] > max) { max = arr[i]; } if (arr[i] < min) { min = arr[i]; } } System.out.println("Maximum Element: " + max); System.out.println("Minimum Element: " + min); } }
Output:
This Particular section is dedicated to Programs only. If you want learn more about Data Structure. Then you can visit below links to get more depth on this subject.