public static void main(String[] args) {
int[] array = {1,-2,3,0,5,6,7,8,100,10};
int myMin = min(array);
System.out.println("minimum number in the array is = " + myMin);
}
public static int min(int[] array) {
int min = 10;
for(int i=0; i<array.length; i++) {
if(array[i] < min) {
min = array[i];
}
}
return min;
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter