public class Hovedprogram { public static void main(String[] args) { System.out.println("Velkommen!"); Student samuel = new Student("Samuel", 123); System.out.println(samuel); System.out.println(samuel.hentNavn()); samuel.taEmne(); System.out.println(samuel.hentStudiepoeng()); for (int i = 0; i < 6; i++){ samuel.taEmne(); } System.out.println(samuel.hentStudiepoeng()); } }