H9c OOP - Toets 9c.8 - Klasse Puzzelspel
Sign in to test your solution.
using System;
namespace H9c
{
// Schrijf hier je Puzzelspel klasse
// Let op: het geheime getal is een PRIVAAT veld
//hieronder niets meer aanpassen
public class Program
{
public static void Main(string[] args)
{
// JE MAG DE CODE IN DE MAIN METHODE NIET AANPASSEN
Puzzelspel spel = new Puzzelspel(42);
Console.WriteLine(spel.Raad(20));
Console.WriteLine(spel.Raad(70));
Console.WriteLine(spel.Raad(35));
Console.WriteLine(spel.Raad(42));
spel.ToonStatus();
}
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.