コード例 #1
0
        static void Main(string[] args)
        {
            BattleShip battleShip = new BattleShip();

            battleShip.Sail();
            battleShip.Fight();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: hiroto302/OneWeekStudy_re
        static void Main(string[] args)
        {
            BattleShip bS = new BattleShip();

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