Warning! It seems that you are using Dodona within another webpage, so not everything may work properly. Let your teacher know so that he can solve the problem by adjusting a setting in the learning environment. In the meantime, you can click this link to open Dodona in a new window.
Warning! The page was not fully loaded, probably because of a network issue. It could be that not all functionalities work as expected. Please try reloading the page.
H9c OOP - Toets 9c.5 - Klasse Voertuig
Sign in to test your solution.
using System;
namespace H9c
{
// Schrijf hier je Voertuig klasse
//hieronder niets meer aanpassen
public class Program
{
public static void Main(string[] args)
{
// JE MAG DE CODE IN DE MAIN METHODE NIET AANPASSEN
Voertuig v = new Voertuig("BMW", 200);
v.ToonStatus();
v.Versnel(80);
v.ToonStatus();
v.Versnel(70);
v.ToonStatus();
v.Versnel(100); // zou 320 worden, maar max is 200
v.ToonStatus();
v.Vertraag(80);
v.ToonStatus();
v.StopVolledig();
v.ToonStatus();
}
}
}