0
How to take a word from a user and convert it to a encrypted word using c ++
2 ответов
+ 8
Well, how much do you know regarding encryption techniques? The most basic one would be Caesar Cipher.
https://en.m.wikipedia.org/wiki/Caesar_cipher
You take user input as string, and add a constant value to each character in the string.
- 2
Can you write the code please?