Basic Console-based calculator using C#.
It should be able to handle basic mathematical operations (addition, subtraction, multiplication, division), and be able to present the results in a consistent way.
- The program should be able to perform basic mathematical operations (Math has methods for more advanced operations if you include them)
- Addition, Subtraction, Division, Multiplication, etc...
- The program should keep running until the user chooses to end it.
- Each mathematical operation should be in its own method.
- Use a loop and a menu system to keep the program running.
- Addition and Subtraction should be able to handle any number of parameters.
https://app.pluralsight.com/library/courses/csharp-fundamentals-dev/table-of-contents
https://docs.microsoft.com/en-us/dotnet/csharp/
- Basic Program Flow
- Selections
- Methods
- Iteration