Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
57031 | 孙诗皓 | 22破解密码 | C++ | Accepted | 3 MS | 276 KB | 239 | 2023-08-22 20:11:23 |
# include<iostream> # include<cstring> using namespace std; int main() { int i,n,len; char str[101]={0}; cin>>str; len=strlen(str); for(i=0;i<=len;i+=3) cout<<str[i]; cout<<endl; return 0; }