一、利用相应的STL库函数判断,来进行加解密。这里需要注意如下几点: 加解密函数的参数需要写成引用,这样才能修改string的值。 对于数字的判断,需要注意这里不是 c = (c + 1) % 10, 而是c = (c - '0' + 1) % 10 + '0',因为这里的c是字符,不是数字。 #include <bits/stdc++.h> using namespace std; int encrypt_str(string &str) {/* the params should be reference to ensure that str can be chan...