Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
35948 陈子墨 22破解密码 C++ Accepted 2 MS 720 KB 199 2022-08-06 09:49:40

Tests(2/2):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int i,n,len; char s[101]={0}; cin>>s; len=strlen(s); for(i=0;i<len;i+=3) { cout<<s[i]; } cout<<endl; return 0; }