1 条题解
-
0Infinity_ LV 8 @ 2024-08-18 16:35:34
#include<iostream> #include<string> using namespace std; int main(){ ios::sync_with_stdio(false); string s; getline(cin, s); int len = s.size(); for(int i = 0; i < len; i++){ if(s[i] >= 'A' && s[i] <= 'Z')cout << char((s[i]-18)%26+'A'); else cout << s[i]; } return 0; }
- 1
信息
- 难度
- 4
- 分类
- (无)
- 标签
- 递交数
- 82
- 已通过
- 35
- 通过率
- 43%
- 被复制
- 10
- 上传者