Answers for "maximum number from Array"

1

Find Maximum array

Array -- Find Maximum
Write a method that can find the maximum number from an int Array
Solution 1:
public static void main(String[] args) {
    int[] arr = new int[]{2,4,6,8,20};
    System.out.println(maxValue(arr));

public static int maxValue( int[]  n ) {
int max = Integer.MIN_VALUE;
for(int each: n)
if(each > max)
max = each;
 
return max;
}
 
Solution 2:
public static int maxValue( int[]  n ) {
Arrays.sort( n );
return  n [ n.lenth-1 ];
}
Posted by: Guest on September-29-2021
1

Find the maximum number of an array js

function getMaxOfArray(numArray) {
    return Math.max.apply(null, numArray);
}
Posted by: Guest on October-22-2020
1

maximum number from Array

---without sort method---
public static int maxValue( int[]  n ) {

int max = Integer.MIN_VALUE;

for(int each: n)

if(each > max)

max = each;

 
return max;
  
---with sort method---
public static int maxValue( int[]  n ) {

Arrays.sort( n );

return  n [ n.lenth-1 ];

}
Posted by: Guest on November-30-2020
0

maximum number of an array

var arr = [1, 2, 3];
var max = Math.max(...arr);
Posted by: Guest on May-22-2021

Code answers related to "maximum number from Array"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language