// Skriver 10 ganger Hurra! public class Hurra { public static void main(String[] args) { int teller = 1; while (teller <= 10) { System.out.println(teller + "Hurra!"); ++teller; } } }