class Hovedprogram { public static void main(String[] args) { int antallTellerTraader = 10; Monitor monitor = new Monitor(antallTellerTraader); for(int i = 0; i < antallTellerTraader; i++){ new Thread(new TelleTraad(i, monitor)).start(); } for(int i = 0; i < 4; i++){ new Thread(new AdderTraad(monitor)).start(); } } }