Contact: aviboots(AT)netvision.net.il
41,656 questions
54,319 answers
573 users
import java.util.*; public class MyClass { public static void main(String args[]) { Integer[] arr = {9, 1, 31, 12, 13, 3, 89, 100, 233, 4, 144, 99}; Integer max = Collections.max(Arrays.asList(arr)); System.out.println(max); } } /* run: 233 */