Question: Write a Java code to encrypt plaintext as follows ( must be written from scratch and your own work ) : - prompt for a

Write a Java code to encrypt plaintext as follows (must be written from scratch and your own work):
- prompt for a plaintext to encode a message
use the following as input: the quick brown fox jumps over the lazy dog
- prompt for the Caesar-cipher shift value
use the following as input: 3
- display the ciphertext result.
- create a screenshot of your program running with its input and output and name it as encode-result.png
-- Write a separate Java code to decrypt ciphertext as follows (must be written from scratch and your own work):
- prompt for a ciphertext to decode a message
use the output from encryption you did above.
- prompt for the Caesar-cipher shift value
use value from encryption you did above.
Please use Java JDK 17 LTS or later version.
Please leave the space character as it is, so no encryption or decryption for space character.
Assume no special characters, symbols, or numbers.
Assume letters only and all lowercase letters.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!