コード例 #1
0
ファイル: Program.cs プロジェクト: Hekla7/CSharpProject
        static void Main(string[] args)
        {
            Table table = new Table();

            while (true)
            {
                table.StartNewGame();
                table.PlayerTurn();
                table.DealerTurn();
                table.ShowResults();

                // parbaude vai uzsakt jauno speli
                //if(table.PlayAgain() == false)
                if (!table.PlayAgain())
                {
                    break;
                }
            }
            // 1. ja speletajam ir virs 21 punkta, tad partraukt vaicashanu --> player
            //2. pie rezultata izvadit abu dalibnieku rezult --> Table
            // 3. ciksliski uzsakt jauno speli --> Main



            Console.ReadLine();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: Greenhill12/RCS_C-Sharp
        static void Main(string[] args)
        {
            Table table = new Table();

            while (true)
            {
                table.StartNewGame();
                table.PlayerTurn();
                table.DealerTurn();
                table.ShowResults();
                Console.WriteLine();

                // pārbauda, vai uzsākt jaunu spēli
                //if(table.PlayAgain() == false)
                if (!table.PlayAgain())
                {
                    break;
                }
            }

            // 1. ja spēlētājam ir virs 21, tad pārtraukt vaicāšanu --> Player

            // 2. pie rezultāta izvadīt abu dalībnieku punktus --> Table

            // 3. cikliski uzsākt jaunu spēli --> Main()



            Console.ReadLine();
        }
コード例 #3
0
        static void Main(string[] args)
        {
            Table table = new Table();

            while (true)
            {
                table.StartNewGame();
                table.PlayerTurn();
                table.DealerTurn();
                table.ShowResults();
                if (table.PlayAgain() == false)
                {
                    break;
                }
            }
        }
コード例 #4
0
ファイル: Program.cs プロジェクト: rforstmane/RCS_CSharp_JS
        static void Main(string[] args)
        {
            Table table = new Table();

            while (true)
            {
                table.StartNewGame();
                table.PlayerTurn();
                table.DealerTurn();
                table.ShowResults();

                //pārbaude, vai uzsākt jaunu spēli
                //if (table.PlayAgain() == false)
                if (!table.PlayAgain())
                {
                    break;
                }
            }

            // 3. cikliski uzsākt jaunu spēli

            Console.ReadLine();
        }