//running of program to call all the methods created!
        static void Main(string[] args)
        {
            //Call the first methods
            introduction();

            BattleshipBoard b = new BattleshipBoard();
            Player          p = new Player();

            p.Randomize();

            //Keep the game in a loop until hit count 13
            while (p.getHitCount() < 13)
            {
                b.DrawBoard(p);
                p.AskCoordinates();
            }

            goodBye();
        } // End public class Program