H9c OOP - Drillen 9 - Klasse Temperatuur
Sign in to test your solution.
using System;
namespace H9c
{
// Schrijf hier je Temperatuur klasse
//hieronder niets meer aanpassen
public class Program
{
public static void Main(string[] args)
{
// JE MAG DE CODE IN DE MAIN METHODE NIET AANPASSEN
Temperatuur temperatuur = new Temperatuur(20);
temperatuur.ToonInfo();
temperatuur.Graad = 100;
temperatuur.ToonInfo();
temperatuur.Graad = -300;
temperatuur.ToonInfo();
temperatuur.Graad = -10;
temperatuur.ToonInfo();
}
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.