7
让我们加密吧!
挑战 挑战在于使用以下指定的规则对给定的字符串进行加密。该字符串将仅包含小写字母,数字和/或空格。 等效字符 现在,首先,您将需要知道如何查找每个字符的“等效”字符。 如果字符是辅音,则可以通过以下方法找到它的等价物: 1) List all the consonants in alphabetical order b c d f g h j k l m n p q r s t v w x y z 2) Get the position of the consonant you are finding the equivalent of. 3) The equivalent …