Project #1: Cipher
A program that encodes a user's message using a Caeser Cipher

PROJECT REQUIREMENTS

Create a program that encodes a user message with a Caeser Cipher.

FAQ

What can I assume about user input?

Can you be more specific about the user interface?

Does the program need to have multiple files?

EXAMPLE: RUNNING PROGRAM

*************************************

Welcome to the Caesar Cipher Program!

*************************************


What is your message? ('q' to quit)

 > abcde

How much should I shift it?

 >


cdefg


What is your message? ('q' to quit)

 > abcde

How much should I shift it?

 > -3


xyzab


What is your message? ('q' to quit)

 > xyz 

How much should I shift it?

 > 5


cde


What is your message?

 > q


Have a great day!