Title Description 1, the input string is added and decrypted, and output. 2 Encryption methods are: When the content is an English letter is replaced with the letter of the latter letter, while the letter conversion case, such as the letter A is replaced by B, the letter z is replaced by A; When the content is a number, the number is added 1, such as 0 to replace the replacement 2,9 replacement 0; Other characters do not change. 3, the decryption method is the inverse process of encryption. Interface Description: Implement interfaces, each of which implements 1 basic operations: void Encrypt (char aucpassword[], char aucresult[]): Implements string encryption in this function and outputs Description 1. The string ends with a. 2, string maximum 100 characters. int Unencrypt (char result[], char password[]): Implement string decryption and output in this function Description 1. The string ends with a. 2, string maximum 100 characters. |