H9c OOP - Drillen 6 - Klasse Quiz

Sign in to test your solution.
using System; namespace H9c { // Schrijf hier je Quiz klasse public class Program { public static void Main(string[] args) { // JE MAG DE CODE IN DE MAIN METHODE NIET AANPASSEN Quiz q1 = new Quiz("Ava", 10); q1.VoegGoedToe(); q1.VoegGoedToe(); q1.VoegGoedToe(); q1.VoegGoedToe(); q1.VoegGoedToe(); q1.VoegGoedToe(); q1.VoegGoedToe(); q1.ToonResultaat(); Quiz q2 = new Quiz("Tim", 10); q2.VoegGoedToe(); q2.VoegGoedToe(); q2.VoegGoedToe(); q2.VoegGoedToe(); q2.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.