Beispiel #1
0
        public static void Special()
        {
            int     sum;
            int     total2;
            Durango dur = new Durango();

            dur.Boxer();

            total2 = dur.preformAddition(20, 200);
            Console.WriteLine(total2);
        }
Beispiel #2
0
        public static void Main(string[] args)
        {
            Apprentice a = new Apprentice();

            a.Display();

            Console.ReadLine();

            Durango d = new Durango();
            int     total;

            total = d.preformAddition(4, 20);

            Console.WriteLine(total);
            Special();
        }