Ejemplo n.º 1
0
        public static void PrintAantal(DoeIets berekening, int aantal)
        {
            int x      = berekening(3, 4);
            int teller = 0;

            while (teller < aantal)
            {
                Console.WriteLine(x);
                teller++;
            }
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            DoeIets berekening = Som;

            PrintAantal(berekening, 3);
        }