You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
423 B

#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false); //读入输出优化的强迫症
int n;
string s;
cin >> n;
cin >> s;
//遍历字符串的第一位char
for (int i = 0; i < s.length(); i++) {
int c = s[i] + n;
while (c > 122) {
c = c - 122 + 97-1;
}
s[i] = char(c);
}
cout << s << endl;
return 0;
}