예제 #1
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass   workWithConsoleClass   = new WorkWithConsoleClass();
            FactorialFunctionClass factorialFunctionClass = new FactorialFunctionClass();

            workWithConsoleClass.Output(factorialFunctionClass.FactorialCalculate(workWithConsoleClass.Input()));
        }
예제 #2
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            SquareCreatingClass  squareCreatingClass  = new SquareCreatingClass();

            workWithConsoleClass.Output(squareCreatingClass.SquareCreating(workWithConsoleClass.Input()));
        }
예제 #3
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            WorkWithStringClass  workWithStringClass  = new WorkWithStringClass();

            workWithConsoleClass.Output(workWithStringClass.SelectUniqueWords(workWithConsoleClass.Input()));
        }
예제 #4
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            CreateTriangleClass  сreateTriangleClass  = new CreateTriangleClass();

            workWithConsoleClass.Output(сreateTriangleClass.TriangleCreating(workWithConsoleClass.Input()));
        }
예제 #5
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            WorkWithListClass    workWithListClass    = new WorkWithListClass();

            workWithListClass.RemoveFromList(workWithListClass.CreateList(workWithConsoleClass.Input()));
        }
예제 #6
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass            workWithConsoleClass            = new WorkWithConsoleClass();
            WorkWithRegularExpressionsClass workWithRegularExpressionsClass = new WorkWithRegularExpressionsClass();

            workWithRegularExpressionsClass.EmailSearch(workWithConsoleClass.Input());
        }
예제 #7
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            CreateXmasTreeClass  createXmasTreeClass  = new CreateXmasTreeClass();

            workWithConsoleClass.Output(createXmasTreeClass.XmasTreeCreating(workWithConsoleClass.Input()));
        }
예제 #8
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            WorkWithStringClass  workWithStringClass  = new WorkWithStringClass();

            workWithConsoleClass.Output(workWithStringClass.IsPositiveInt(workWithConsoleClass.Input()));
        }
예제 #9
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            FunctionClass        functionClass        = new FunctionClass();

            workWithConsoleClass.Output(functionClass.StringCreation(workWithConsoleClass.Input()));
        }
예제 #10
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            WorkWithStringClass  workWithStringClass  = new WorkWithStringClass();

            workWithConsoleClass.Output(workWithStringClass.CalculateAverageLength(workWithConsoleClass.Input()));
        }
예제 #11
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            WorkWithStringClass  workWithStringClass  = new WorkWithStringClass();

            workWithConsoleClass.Output(workWithStringClass.CheckingOfBrackets(workWithConsoleClass.Input()));
        }
예제 #12
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();

            TriangleClass triangle = new TriangleClass(workWithConsoleClass.Input());

            workWithConsoleClass.Output(triangle.GetArea(), triangle.GetPerimeter());
        }
예제 #13
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();

            RoundClass round = new RoundClass(workWithConsoleClass.Input());

            workWithConsoleClass.Output(round.GetAreaOfRound(), round.GetLengthOfRound());
        }
예제 #14
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass            workWithConsoleClass            = new WorkWithConsoleClass();
            WorkWithRegularExpressionsClass workWithRegularExpressionsClass = new WorkWithRegularExpressionsClass();

            workWithConsoleClass.Output(workWithRegularExpressionsClass.IsDateContains(workWithConsoleClass.Input()));
        }
예제 #15
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass   workWithConsoleClass   = new WorkWithConsoleClass();
            WorkWithRectangleClass workWithRectangleClass = new WorkWithRectangleClass();

            workWithConsoleClass.Output(workWithRectangleClass.RectangleAreaCalculation(workWithConsoleClass.Input()));
        }
예제 #16
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass            workWithConsoleClass            = new WorkWithConsoleClass();
            WorkWithRegularExpressionsClass workWithRegularExpressionsClass = new WorkWithRegularExpressionsClass();

            workWithConsoleClass.Output(workWithRegularExpressionsClass.ReplaceHtmlTags(workWithConsoleClass.Input()));
        }
예제 #17
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass        workWithConsoleClass        = new WorkWithConsoleClass();
            IsNumberSimpleFunctionClass isNumberSimpleFunctionClass = new IsNumberSimpleFunctionClass();

            workWithConsoleClass.Output(isNumberSimpleFunctionClass.IsNumberSimpleCheck(workWithConsoleClass.Input()));
        }