This is a simple Caesar Cipher program written in Java that can encrypt and decrypt text using a custom shift. The program works with all ASCII characters.
- Encrypts user input by shifting all characters
- Decrypts the encrypted text back to the original
- Handles wrap-around for ASCII characters (0-127)
- Simple command-line interface