Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
157578 Kevin 删除数字字符 C++ Accepted 40 MS 1240 KB 241 2026-08-01 09:49:52

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; char a[1000005]; int main() { gets(a); int len=strlen(a); for(int i=0;i<len;i++){ if(a[i]>='0'&&a[i]<='9'){ continue; } else{ cout<<a[i]; } } return 0; }