H9c OOP - Drillen 4 - Klasse Student
Log in om je oplossingen te testen.
using System;
namespace H9c
{
// Schrijf hier je Student klasse
public class Program
{
public static void Main(string[] args)
{
// JE MAG DE CODE IN DE MAIN METHODE NIET AANPASSEN
Student s1 = new Student("Emma", "3A", 72);
Student s2 = new Student("Warre", "3A", 45);
Student s3 = new Student("Lena", "3B", 50);
s1.ToonResultaat();
s2.ToonResultaat();
s3.ToonResultaat();
}
}
}
Je kunt zo vaak indienen als je wenst. Er wordt enkel rekening gehouden met je laatst ingediende oplossing.
Log in om je oplossingen te testen.