Developpement/23DEV1.1/TPS2/TP01/junit/TP2/Largest.java

18 lines
393 B
Java
Raw Permalink Normal View History

2024-12-09 11:53:11 +01:00
public class Largest {
/**
* Return the largest element in a list.
*
* @param list A list of integers
* @return The largest number in the given list
*/
public static int largest(int[] list) {
int index, max=Integer.MAX_VALUE;
for (index = 0; index < list.length-1; index++) {
if (list[index] > max) {
max = list[index];
}
}
return max;
}
}