H9c OOP - Toets 9c.2 - Klasse Lamp
Sign in to test your solution.
using System;
namespace H9c
{
// Schrijf hier je Lamp klasse
//hieronder niets meer aanpassen
public class Program
{
public static void Main(string[] args)
{
// JE MAG DE CODE IN DE MAIN METHODE NIET AANPASSEN
Lamp l = new Lamp();
l.Merk = "Philips";
l.Wattage = 60;
Console.WriteLine($"Merk: {l.Merk}");
Console.WriteLine($"Wattage: {l.Wattage}");
}
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.