public class Student { String navn; int id; int studiepoeng = 0; public Student(String navnArg, int idArg){ this.navn = navnArg; this.id = idArg; } public String hentNavn(){ return this.navn; } public void taEmne(){ this.studiepoeng += 10; } public int hentStudiepoeng(){ return this.studiepoeng; } }