import java.util.Scanner; // Stoppeklokke som ikke stopper n?r main() terminerer class Stoppeklokke1 { public static void main (String[] arg) { Scanner tastatur = new Scanner(System.in); System.out.print("Trykk Return for ? starte... "); tastatur.nextLine(); Thread klokke = new Thread(new Klokke()); klokke.start(); System.out.print("Trykk Return for ? stoppe..."); tastatur.nextLine(); System.out.println("Takk for n?"); } } class Klokke implements Runnable { @Override public void run () { int tid = 0; while (true) { System.out.print(tid + " "); try { Thread.sleep(1000); } catch (InterruptedException e) { } tid++; } } }