Allows you to run any kind of calculation whether it is as simple as addition or as complex as pertration.
- Addition
- Subtraction
- Multiplication
- Division
- Square Root
- Cube Root
- Root
- Square
- Cube
- Exponent
- Factorial
- Tertation
- Petration
-
Either download the latest Releases from the releases tab or
-
Paste the following commands in the terminal; Make sure you have .NET SDK 10, either Visual Studio 2026, Visual Studio 2022 or Visual Studio Code and Git
git clone https://github.com/phaniraja-ece/Advance-Calculator.git
then:
cd Advance-Calculatorthen for Windows:
For x64 bit:
dotnet publish -c Release -r win-x64 --self-contained true
For x32 bit (or also known as x86 bit):
dotnet publish -c Release -r win-x64 --self-contained true
For ARM (only ARM64 is supported. For ARM32, run the x86 version of dotnet and the app in x86 emulation):
dotnet publish -c Release -r win-arm64 --self-contained true
then for Linux:
For x64 bit:
dotnet publish -c Release -r linux-x64 --self-contained true
For x32 bit (or also known as x86 bit):
dotnet publish -c Release -r linux-x86 --self-contained true
For ARM32:
dotnet publish -c Release -r linux-arm --self-contained true
For ARM64:
dotnet publish -c Release -r linux-arm64 --self-contained true
and finally for MacOS:
For x64 bit (Intel based Macs):
dotnet publish -c Release -r osx.10.12-x64 --self-contained true
For ARM (Apple Silicon):
dotnet publish -c Release -r osx-arm64 --self-contained true