H9c OOP - Drillen 4 - Klasse Student
Sign in to test your solution.
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();
}
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.