static void Main(string[] args)
        {
            FourOperations fourOperations = new FourOperations();

            fourOperations.Sum(5, 6);
            fourOperations.Sum(15, 7);
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            FourOperations fourOperations = new FourOperations();

            fourOperations.Topla(5, 6);
            fourOperations.Topla(6, 9);
        }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            FourOperations fourOperations = new FourOperations();

            fourOperations.Addition(5, 6);
            fourOperations.Addition(6, 9);
        }
Exemplo n.º 4
0
        static void Main(string[] args)
        {
            FourOperations dortislem = new FourOperations();

            dortislem.Topla(5, 6);

            dortislem.Topla(6, 9);
        }
Exemplo n.º 5
0
        static void Main(string[] args)
        {
            FourOperations fourOperations = new FourOperations();

            fourOperations.Gather(5, 23);
            fourOperations.Sticker(20, 6);
            fourOperations.Multiplication(5, 6);
            fourOperations.Split(42, 6);
        }
Exemplo n.º 6
0
        static void Main(string[] args)
        {
            FourOperations fourOperations = new FourOperations();

            fourOperations.Sum(9, 10);
        }
Exemplo n.º 7
0
        static void Main(string[] args)
        {
            FourOperations fourOperations = new FourOperations();

            Console.WriteLine("Result: " + fourOperations.Sum(5, 7));
        }
Exemplo n.º 8
0
        private static void Main(string[] args)
        {
            FourOperations fourOperation = new FourOperations();

            fourOperation.Addition(5, 6);
        }
Exemplo n.º 9
0
        static void Main(string[] args)
        {
            FourOperations fourOperations = new FourOperations();

            Console.WriteLine("6 + 9 = " + fourOperations.Collect(6, 9));
        }