H9c OOP - Advanced 4 - Klasse Cijferlijst
Sign in to test your solution.
using System;
using System.Collections.Generic;
namespace H9c
{
// Schrijf hier je Cijferlijst klasse
//hieronder niets meer aanpassen
public class Program
{
public static void Main(string[] args)
{
// JE MAG DE CODE IN DE MAIN METHODE NIET AANPASSEN
Cijferlijst cijferlijst = new Cijferlijst("Wiskunde");
cijferlijst.ToonInfo();
cijferlijst.VoegCijferToe(15);
cijferlijst.VoegCijferToe(17);
cijferlijst.VoegCijferToe(12);
cijferlijst.VoegCijferToe(16);
cijferlijst.ToonInfo();
cijferlijst.VoegCijferToe(25);
cijferlijst.VoegCijferToe(8);
cijferlijst.ToonInfo();
cijferlijst.ToonCijfers();
}
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.