题解
2023-08-14 07:41:21
发布于:四川
9阅读
0回复
0点赞
凯撒密码板子题好拉
不想多说了,就是强转的事情,和输入字符串的时候用 getline 输入。
代码:
#include <iostream>
using namespace std;
int main(){
string str;
getline(cin,str);
for (const auto &item : str){
if (item>='A' && item<='Z'){
if (item<='E'){
cout<<char(item-5+26);
}else{
cout<<char(item-5);
}
}else{
cout<<item;
}
}
return 0;
}
这里空空如也
有帮助,赞一个