Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass            workWithConsoleClass            = new WorkWithConsoleClass();
            WorkWithRegularExpressionsClass workWithRegularExpressionsClass = new WorkWithRegularExpressionsClass();

            workWithConsoleClass.Output(workWithRegularExpressionsClass.ReplaceHtmlTags(workWithConsoleClass.Input()));
        }
Ejemplo n.º 2
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass        workWithConsoleClass        = new WorkWithConsoleClass();
            IsNumberSimpleFunctionClass isNumberSimpleFunctionClass = new IsNumberSimpleFunctionClass();

            workWithConsoleClass.Output(isNumberSimpleFunctionClass.IsNumberSimpleCheck(workWithConsoleClass.Input()));
        }
Ejemplo n.º 3
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            WorkWithStringClass  workWithStringClass  = new WorkWithStringClass();

            workWithConsoleClass.Output(workWithStringClass.CheckingOfBrackets(workWithConsoleClass.Input()));
        }
Ejemplo n.º 4
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            SquareCreatingClass  squareCreatingClass  = new SquareCreatingClass();

            workWithConsoleClass.Output(squareCreatingClass.SquareCreating(workWithConsoleClass.Input()));
        }
Ejemplo n.º 5
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass   workWithConsoleClass   = new WorkWithConsoleClass();
            FactorialFunctionClass factorialFunctionClass = new FactorialFunctionClass();

            workWithConsoleClass.Output(factorialFunctionClass.FactorialCalculate(workWithConsoleClass.Input()));
        }
Ejemplo n.º 6
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            WorkWithStringClass  workWithStringClass  = new WorkWithStringClass();

            workWithConsoleClass.Output(workWithStringClass.SelectUniqueWords(workWithConsoleClass.Input()));
        }
Ejemplo n.º 7
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            SumFunctionClass     sumFunctionClass     = new SumFunctionClass();

            workWithConsoleClass.Output(sumFunctionClass.Sum(1000));
        }
Ejemplo n.º 8
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            CreateTriangleClass  сreateTriangleClass  = new CreateTriangleClass();

            workWithConsoleClass.Output(сreateTriangleClass.TriangleCreating(workWithConsoleClass.Input()));
        }
Ejemplo n.º 9
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            WorkWithStringClass  workWithStringClass  = new WorkWithStringClass();

            workWithConsoleClass.Output(workWithStringClass.CalculateAverageLength(workWithConsoleClass.Input()));
        }
Ejemplo n.º 10
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass            workWithConsoleClass            = new WorkWithConsoleClass();
            WorkWithRegularExpressionsClass workWithRegularExpressionsClass = new WorkWithRegularExpressionsClass();

            workWithConsoleClass.Output(workWithRegularExpressionsClass.IsDateContains(workWithConsoleClass.Input()));
        }
Ejemplo n.º 11
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            CreateXmasTreeClass  createXmasTreeClass  = new CreateXmasTreeClass();

            workWithConsoleClass.Output(createXmasTreeClass.XmasTreeCreating(workWithConsoleClass.Input()));
        }
Ejemplo n.º 12
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            FunctionClass        functionClass        = new FunctionClass();

            workWithConsoleClass.Output(functionClass.StringCreation(workWithConsoleClass.Input()));
        }
Ejemplo n.º 13
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();
            WorkWithStringClass  workWithStringClass  = new WorkWithStringClass();

            workWithConsoleClass.Output(workWithStringClass.IsPositiveInt(workWithConsoleClass.Input()));
        }
Ejemplo n.º 14
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass   workWithConsoleClass   = new WorkWithConsoleClass();
            WorkWithRectangleClass workWithRectangleClass = new WorkWithRectangleClass();

            workWithConsoleClass.Output(workWithRectangleClass.RectangleAreaCalculation(workWithConsoleClass.Input()));
        }
Ejemplo n.º 15
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();

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

            workWithConsoleClass.Output(triangle.GetArea(), triangle.GetPerimeter());
        }
Ejemplo n.º 16
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();

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

            workWithConsoleClass.Output(round.GetAreaOfRound(), round.GetLengthOfRound());
        }
Ejemplo n.º 17
0
        public static void Main(string[] args)
        {
            WorkWithConsoleClass workWithConsoleClass = new WorkWithConsoleClass();

            User user = new User(workWithConsoleClass.InputUserData());

            workWithConsoleClass.Output(user.ToString());
        }