Project 1: Caesar Cipher Assignment Overview In this assignment, we are going to implement a simple encoding and decoding of text. As a result of working on this project, you will gain more experience...

How do I write Pseudocode for Caesar CipherProject 1: Caesar Cipher<br>Assignment Overview<br>In this assignment, we are going to implement a simple encoding and decoding of text. As a result of<br>working on this project, you will gain more experience with the use of:<br>1. string<br>2. if statement<br>3. for loop and while loop<br>Background<br>A rotation cipher is one of the simplest, plain-text ciphers, known since at least the time of Julius<br>Caesar. It takes in a plain-text string, and translates it into a new string based on a rotation of the<br>alphabet being used. The basis is a

Extracted text: Project 1: Caesar Cipher Assignment Overview In this assignment, we are going to implement a simple encoding and decoding of text. As a result of working on this project, you will gain more experience with the use of: 1. string 2. if statement 3. for loop and while loop Background A rotation cipher is one of the simplest, plain-text ciphers, known since at least the time of Julius Caesar. It takes in a plain-text string, and translates it into a new string based on a rotation of the alphabet being used. The basis is a "rotation", a re-sequencing of an alphabet. Consider the following example. Consider the alphabet being a single string consisting of the lower case English letters as below (shown with each letter's associated index):
bcd<br>fghijkmnop 9rs<br>a<br>e<br>u<br>V<br>w xy z<br>0 12 3 4 5 6 7 89 1 1 1<br>1 1 1<br>2 2 2 22 2<br>1<br>1<br>0 12 3 4 5 6 78 9 0 1 2 3 4 5<br>1<br>Then a rotation of 3 means that the first three letters of the alphabet are moved to the end of the<br>sequence, while the other letters move up, as shown below. Notice that the movement is done one<br>letter at a time.<br>t<br>u<br>V<br>W Xy<br>hijkI<br>d<br>f<br>m n<br>r<br>a<br>C<br>e<br>1 2 2 2<br>90 1<br>1 2 3<br>5 6 7<br>8 9<br>1<br>1<br>1<br>1<br>1<br>2 2 2<br>6.<br>8<br>0 12 3 4<br>3<br>4<br>4-<br>

Extracted text: bcd fghijkmnop 9rs a e u V w xy z 0 12 3 4 5 6 7 89 1 1 1 1 1 1 2 2 2 22 2 1 1 0 12 3 4 5 6 78 9 0 1 2 3 4 5 1 Then a rotation of 3 means that the first three letters of the alphabet are moved to the end of the sequence, while the other letters move up, as shown below. Notice that the movement is done one letter at a time. t u V W Xy hijkI d f m n r a C e 1 2 2 2 90 1 1 2 3 5 6 7 8 9 1 1 1 1 1 2 2 2 6. 8 0 12 3 4 3 4 4-

Jun 04, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here