Project 1: Simple Calculator
Description:
A basic console-based calculator that allows the user to perform simple arithmetic operations: addition, subtraction, multiplication, and division.
Purpose:
To practice user input handling in C#.
To separate program logic into classes (using Calculator.cs).
To handle exceptions such as invalid input and division by zero.
️ Features:
Takes two numbers from the user.
Lets the user choose the operation ( + , - , * , / ).
Displays the result.
Handles errors gracefully.
Allows multiple calculations until the user exits.