Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 560 Bytes

File metadata and controls

17 lines (11 loc) · 560 Bytes

Caesar Cipher

This is a Caesar Cipher program that encrypts text by shifting letters through the alphabet.

The user enters a message and a shift value, and the program uses that shift to change each letter. I built this to practice string manipulation, loops, and basic encryption logic.

Concepts Practiced

  • String manipulation
  • Loops
  • Character shifting
  • User input
  • Basic encryption logic

What I Learned

This project helped me understand how text can be transformed through code and how a simple encryption method works behind the scenes.