Oppgave 2
int[] a = {4,9,12,7,16,20,8,3,11,3,6}; int antall = 0; for (int k : a) if (k > 10) antall++; System.out.println(antall);