Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
784 邓小龙 22破解密码 C++ Accepted 0 MS 264 KB 230 2023-04-01 15:55:50

Tests(2/2):


Code:

# include<iostream> # include<cstring> using namespace std; int main(){ string a; cin>>a; int i=0; while(a[i]!='\0') { if(i%3==0) cout<<a[i]; i++; } return 0; }