I need to create a program that will solve any Caesar Cipher. The goal is to be given an encoded message, make it an array, and use that array to return to me a decoded message. At the end of the project you will be given a code and will be graded on how efficiently you are able to produce a correct deciphering of the message using your program.

Requirement:
- The code must allow for any string or character array to be used.

I’m in need of some big help

3 answers

For something general like this, google is always a good first step. The first hit I got was

http://practicalcryptography.com/ciphers/caesar-cipher/

It discusses the problem, and provides links to solutions in several programming languages. Now let 'er rip!
thank you 👍
this website explains too
www.geeksforgeeks.org/caesar-cipher/