This package implements simple to complex mathematical operations.
- Language: C#
- Frameworks: .NET Standard 2.0
- To install this package using the .NET CLI, run: `dotnet add package Mathnugett --version 1.0.0`
- To Instal using Visual Studio:
- Right-click on project dependencies
- Select manage Nuget packages
- Search `Mathnugett`
- Click install
This package only accepts and returns integer data types in the console. This package can perform Addition, Subtraction, Multiplication, Division, RaiseToPower, Square, Hypotenuse operations. You can perform simple to complex mathematical operations after instantiating the Operations class lIbrary.
using MathematicalOperations;
namespace MathNuget
{
internal class Program
{
static void Main(string[] args)
{
Var ops = new Operations();
ops.Multiplication(10, 5);
}
}
}
👤 David Ukpoju
- GitHub: @NIMICODER
- LinkedIn: David Ukpoju
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page]https://github.com/NIMICODER/MathematicalOperations/issues).
Give a ⭐️ if you like this project!