

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to find Min/Max numbers in a java array?
You can find the minimum and maximum values of an array using for loops −
Example
public class MinAndMax { public int max(int [] array) { int max = 0; for(int i=0; i<array.length; i++ ) { if(array[i]>max) { max = array[i]; } } return max; } public int min(int [] array) { int min = array[0]; for(int i=0; i<array.length; i++ ) { if(array[i]<min) { min = array[i]; } } return min; } public static void main(String args[]) { int[] myArray = {23, 92, 56, 39, 93}; MinAndMax m = new MinAndMax(); System.out.println("Maximum value in the array is::"+m.max(myArray)); System.out.println("Minimum value in the array is::"+m.min(myArray)); } }
Output
Maximum value in the array is ::93 Minimum value in the array is ::23
- Related Questions & Answers
- Find max and min values in array of primitives using Java
- How to find the min/max element of an Array in JavaScript?
- Find max and min values in an array of primitives using Java
- Min-Max Heaps
- Average of array excluding min max JavaScript
- JavaScript: How to Find Min/Max Values Without Math Functions?
- Min-Max Range Queries in Array in C++
- Find Min-Max in heterogeneous list in Python
- Symmetric Min-Max Heaps
- Min and max values of an array in MongoDB?
- max() and min() in Python
- Sorting max to min value in MySQL
- How to use min and max attributes in HTML?
- Java Program to generate random number array within a range and get min and max value
- Sort array based on min and max date in JavaScript?
Advertisements