Simple C# Calculator (Console Application)
This project is a basic console-based calculator written in C#. The program asks the user for two numbers and an operation symbol (+, -, *, /). It then performs the selected calculation and prints the result on the screen.
โจ Features
Takes user input for two integers
Supports four basic arithmetic operations
Includes division-by-zero check
Uses a clean and readable switch-case structure
๐ Example Usage
- Please enter the first number: 12
- Please enter the second number: 4
- Please enter the transaction you want to perform: / Division: 3
๐ Technologies
C#
Console Application (non-.NET Core)
๐ How to Run
Copy the .cs file into your C# console project
Build and run the program
Follow the on-screen instructions