Example #1
0
        static void Main(string[] args)
        {
            BattleShip battleShip = new BattleShip();

            battleShip.Sail();
            battleShip.Fight();
        }
Example #2
0
        static void Main(string[] args)
        {
            BattleShip bS = new BattleShip();

            Console.WriteLine("種類 : {0}", bS.Type);
            bS.Sail();
            bS.Battle();
        }