Page 1 of 1

Write a C++ program to apply encryption and decryption technique. The program will ask the user to enter simple text mes

Posted: Wed Apr 27, 2022 3:11 pm
by answerhappygod
Write A C Program To Apply Encryption And Decryption Technique The Program Will Ask The User To Enter Simple Text Mes 1
Write A C Program To Apply Encryption And Decryption Technique The Program Will Ask The User To Enter Simple Text Mes 1 (22.1 KiB) Viewed 77 times
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