コード例 #1
0
        public void Scrabble_GetPoints_Points2()
        {
            Scrabbles newScrabble = new Scrabbles();
            int       score       = newScrabble.GetPoints("zzzf");

            Assert.AreEqual(34, score);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: StevenLy369/C-Scrabble
        public static void Main()
        {
            Console.WriteLine("Please Enter a word, We shall Tell you the points");
            string input = Console.ReadLine();

            Scrabbles newScrabble = new Scrabbles();
            int       point       = newScrabble.GetPoints(input);

            Console.WriteLine(input + " is worth " + point);
        }