Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134116 田祥江 删除数字字符 C++ Accepted 78 MS 1248 KB 205 2025-10-25 17:29:25

Tests(10/10):


Code:

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