Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 381 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 381 Bytes

SharpCalc

Tiny calculator, created with C# & .NET

Currently support +, -, /, * and ()

How to run?

Clone repo

git clone https://github.com/ilyas-kalandar/SharpCalc

Change directory

cd SharpCalc

Run

dotnet run 

Example

SharpCalc>> (10 * 3) + (6 * 2) + 8
Ans: 50
SharpCalc>> 2 + 7 * 3
Ans: 23
SharpCalc>>