Rio Hondo College
CIT 126 C++ programming
Encrypt a String
That encrypts the string contains in the object by replacing each letter with its successor in the ASCII ordering. For example, the string baa would be encryped to cbb. Assume that all characters that are part of an EncryptableString object are letters a--- z, and A----Z and that the successor of z is a and the successor of Z is A. Test your class with a program that asks the user to enter strings that are then encrypted and printed.
Professor Liu