H9c OOP - Drillen 8 - Klasse Scorebord
Sign in to test your solution.
using System;
namespace H9c
{
// Schrijf hier je Scorebord klasse
public class Program
{
public static void Main(string[] args)
{
// JE MAG DE CODE IN DE MAIN METHODE NIET AANPASSEN
Scorebord s = new Scorebord("Club Brugge", "RSC Anderlecht");
s.ToonStand();
s.DoelpuntThuis();
s.ToonStand();
s.DoelpuntThuis();
s.ToonStand();
s.DoelpuntUit();
s.ToonStand();
Console.WriteLine($"Winnaar: {s.Winnaar()}");
}
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.