Esempio n. 1
0
        static void Main(string[] args)
        {
            //problem 1
            inputstring input = new inputstring();

            input.whatsthelength();
            Console.ReadLine();

            input.printThatStuff();
            Console.ReadLine();


            //problem 2
            showpi pi = new showpi();

            pi.showpie();


            //problem 3
            BMO bmo = new BMO();

            bmo.DisplayIntruction();

            //problem 4
            RotateNumber rotate = new RotateNumber();

            rotate.Rotate();

            //problem 5
            Dance dance = new Dance();

            dance.Dancenstuff();
        }
Esempio n. 2
0
        static void Main(string[] args)
        {
            ElementCounter newCounter = new ElementCounter();

            newCounter.ListCounter("Heat");

            ValueOfPi newPi = new ValueOfPi();

            newPi.piOutput();

            BMO comboMove = new BMO();

            comboMove.bmoCommands("Win");

            RotatedList rotateList = new RotatedList();

            rotateList.myListRotated();

            DancingMan newDanceMan = new DancingMan();

            newDanceMan.dancingMan();
        }