标签:esc fmm close spl 方式 text desc 字符串 one
读取这一行字符串,每个字符串长度小于80个字符
对于每组数据,输出每行字符串的加密字符串。
Ifmmp! Ipx bsf zpv!
代码:
#include <iostream> #include<string> using namespace std; int main() { char str[100]; gets(str); for (int i = 0; str[i]!= ‘\0‘;i++) { if ((str[i] >= ‘a‘&&str[i]<‘z‘) || (str[i] >= ‘A‘&&str[i]<‘Z‘)) { str[i] = str[i] + 1; } else if (str[i] == ‘z‘ ) { str[i] = ‘a‘; } else if (str[i] == ‘Z‘) { str[i] = ‘A‘; } cout << str[i]; } system("pause"); return 0; }
标签:esc fmm close spl 方式 text desc 字符串 one
原文地址:https://www.cnblogs.com/hequnwang/p/10508169.html