#π’ Simple Calculator in Java: This is a basic console-based calculator written in Java that performs simple arithmetic operations on two integers.
#β Features : Addition (+) Subtraction (-) Multiplication (*) Division (/) with zero-division handling
#π οΈ How it works : Prompts the user to input two integers. Asks the user to select an arithmetic operation using the appropriate operator symbol. Performs the operation and displays the result. Validates against invalid operators and division by zero.
#π Example : Enter two values to perform arithmetic operations: 10 5 Choose an operator to perform operation: Addition (+) Subtraction (-) Multiplication (*) Division (/) + Result: 15
#π§βπ» Technologies Used : Java Scanner (for user input) Switch case (for operator handling)