+ 3
š¤š¤CHALLENGEš¤š¤ Caesar Cipher Decoder
Create a program that lets you input your encrypted message and the shift used to encrypt it and outputs the decoded message The caesar cipher is a type of encryption in which each letter of the message is replaced by a letter some fixed number of positions down theĀ alphabet. For example, with a left shift of 3,Ā DĀ would be replaced byĀ A,Ā EĀ would becomeĀ B, and so on.
4 Answers
+ 8
check it once,
https://code.sololearn.com/c4273uXNh86f/?ref=app
+ 2
https://code.sololearn.com/cyuN38uMKsil/?ref=app
Works "correctly" xD Try it :D
Greetings :D
+ 1
This is a slight change to my encode Caesar cipher. Put the shift number, then the text, supports multiple lines of text. You can pass the shift as a command line argument, if compiled on IDE etc.
The shift should be between 1 and 25.
https://code.sololearn.com/cd2uPP8OCqDK/?ref=app
0
https://code.sololearn.com/cSpp1t5JMjY3/?ref=app