| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155884 | 张蔚林 | 情报加密 | C++ | Wrong Answer | 1 MS | 268 KB | 319 | 2026-06-14 12:30:45 |
#include<bits/stdc++.h> using namespace std; int main(){ char n[81]={}; cin.getline(n,81); int l=strlen(n); for(int i=0;i<l;i++){ if(n[i]=='Z'||n[i]=='z'){ n[i]-=25; } else if((n[i]>='a'&&n[i]<='y')||(n[i]>='A'&&n[i]<='Y')){ n[i]+=1; } } for(int i=0;i<=l;i++)cout<<n[i]; return 0; }
------Input------
It is my pleasure.
------Answer-----
Ju jt nz qmfbtvsf.
------Your output-----
Ju jt nz qmfbtvsf.