| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 58105 | 还有库库 | 凯撒密码 | C++ | Compile Error | 0 MS | 0 KB | 236 | 2024-12-04 16:48:35 |
#include<bits/stdc++.h> using namespace std; int main() { string str; int n; cin>>str; cin>>n; for(int i=0;i<str.length();i++){ str[i]+=n; cout<<str[i]; } } 测评信息: