H9c OOP - Drillen 3 - Klasse Rekenmachine
Sign in to test your solution.
using System;
namespace H9c
{
// Schrijf hier je Rekenmachine klasse
public class Program
{
public static void Main(string[] args)
{
// JE MAG DE CODE IN DE MAIN METHODE NIET AANPASSEN
Rekenmachine rm1 = new Rekenmachine(10, 3);
rm1.ToonAlles();
Console.WriteLine("---");
Rekenmachine rm2 = new Rekenmachine(6, 7);
rm2.ToonAlles();
}
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.