Exemple #1
0
        public int GetMax(int decimals)
        {
            Palindromic p = new Palindromic();

            PalindromeMax(decimals);
            //error
        }
Exemple #2
0
        static void Main(string[] args)
        {
            bool exit       = false;
            int  taskNumber = 0;

            while (!exit)
            {
                Console.Write("Enter number of task to solve: \n" +
                              "1. Partisions             5. Interesting Numbers \n" +
                              "2. Ways Without Crossing  6. Display In Three Steps \n" +
                              "3. Palindromic            7. Ways Counter \n" +
                              "4. Friends Pairs          8. Fence Painter \n");
                taskNumber = Convert.ToInt32(Console.ReadLine());
                switch (taskNumber)
                {
                case 1:
                    Partitions.Display();
                    break;

                case 2:
                    NumberOfWaysWithoutCrossing.Display();
                    break;

                case 3:
                    Palindromic.Display();
                    break;

                case 4:
                    FriendPairsFinal.Display();
                    break;

                case 5:
                    InterestNum.Display();
                    break;

                case 6:
                    WaysToCover.DisplayInThreeSteps();
                    break;

                case 7:
                    WaysCounterClass.Display();
                    break;

                case 8:
                    FencePainter.Display();
                    break;

                default:
                    Console.WriteLine("Entered wrong number.");
                    break;
                }
                ;
                Console.WriteLine("Exit the program? True/False?");
                exit = (Console.ReadLine().Trim().ToUpper() == "TRUE") ? true : false;
            }
            Console.WriteLine("You've exited the program.");
            Console.ReadKey();
        }
Exemple #3
0
        public void TestMethodIsPalindromic()
        {
            //Arrange
            //test strings
            string s1 = "A nut for a jar of tuna.";
            string s2 = "Borrow or rob";
            string s3 = "343";

            //Act

            bool b1 = Palindromic.IsPalindromic(s1);
            bool b2 = Palindromic.IsPalindromic(s2);
            bool b3 = Palindromic.IsPalindromic(s3);

            //Assert
            Assert.IsTrue(b1);
            Assert.IsTrue(b2);
            Assert.IsTrue(b3);
        }
Exemple #4
0
        public int GetMin(int decimals)
        {
            Palindromic p = new Palindromic();

            return(p.GetPalindromeMin(decimals));
        }
Exemple #5
0
 public PalindromicTests()
 {
     palindromic = new Palindromic();
 }