Write a C++ program to apply encryption and decryption technique. The program will ask the user to enter simple text mes
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Write a C++ program to apply encryption and decryption technique. The program will ask the user to enter simple text mes
Write a C++ program to apply encryption and decryption technique. The program will ask the user to enter simple text message without any special character. Then program will apply encryption technique on the message and will display the encrypted message on the screen. The program will then covert the encrypted text to back to original message using decryption technique. The conversion criteria is given below: a b с d e f h i letter key g ) ! # $ % & + k m n o p q r letter key : = t u V w X Y Z letter key S ? Space 8 @ A letter key 9 Sample input/Output: Enter Text Message: hello Encrypted Message: *&} Decrypted Message: hello Enter Text Message: i am lucky Encrypted Message: +8!/8-[$._ Decrypted Message: i am lucky
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!