A simple calculator implemented in Java with support for basic arithmetic operations, power, and square root functionality.
- Addition (
+) - Subtraction (
-) - Multiplication (
*) - Division (
/) - Modulus (
%) - Power (
^) - Square Root (
#)
- Compile the program:
javac Calculator.java - Run the program:
java Calculator
- Java