Skip to content

Artemis Simple Mathematical Calculation API. Can perform basic mathematical operations. (Compiled .dll is in bin/debug)

License

Notifications You must be signed in to change notification settings

xTrayambak/Artemis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Artemis

Artemis Simple Mathematical Calculation API. Can perform basic mathematical operations. (Compiled .dll is in bin/debug)


API Documentation:

the first integer is defined as 'a', the second integer is defined as 'b'.

"Add":

the Add function performs the addition operation. Eg:

using System;
using artemis;

namespace ArtemisDemo
{
    class Program
    {
        private static calculationAPI api = new calculationAPI();
        static void Main(string[] args)
        {
            Console.WriteLine(api.Add(a: 20, b: 10));
        }
    }
}

"Subtract":

the Subtract function performs the subtraction operation. Eg:

using System;
using artemis;

namespace ArtemisDemo
{
    class Program
    {
        private static calculationAPI api = new calculationAPI();
        static void Main(string[] args)
        {
            Console.WriteLine(api.Subtract(a: 20, b: 10));
        }
    }
}

"Multiply":

the Multiply function performs the multiplication operation. Eg:

using System;
using artemis;

namespace ArtemisDemo
{
    class Program
    {
        private static calculationAPI api = new calculationAPI();
        static void Main(string[] args)
        {
            Console.WriteLine(api.Multiply(a: 20, b: 10));
        }
    }
}

"Divide":

the Divide function performs the division operation. Eg:

using System;
using artemis;

namespace ArtemisDemo
{
    class Program
    {
        private static calculationAPI api = new calculationAPI();
        static void Main(string[] args)
        {
            Console.WriteLine(api.Divide(a: 20, b: 10));
        }
    }
}

This project has a MIT license, which gives anyone who obtains a copy of this code, the right to freely modify and redistribute.

About

Artemis Simple Mathematical Calculation API. Can perform basic mathematical operations. (Compiled .dll is in bin/debug)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages