class Hamstring { private static final int ANTALL_KUNDER = 100; private static final int ANTALL_ANSATTE = 10; public static void main(String[] args) { Butikk matbutikken = new Butikk(ANTALL_ANSATTE, ANTALL_KUNDER); for (int i = 0; i < ANTALL_KUNDER; i++) { Kunde nyKunde = new Kunde(5, matbutikken); nyKunde.start(); } Stoppeklokke stoppeklokke = new Stoppeklokke(); stoppeklokke.start(); while (!matbutikken.erButikkStengt()) { System.out.print(""); } System.out.println("Det tok saa lang tid aa handle i dag: " + stoppeklokke.visTidOgStopp()); } }