| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146452 | 汪义罗 | 删除数字字符 | C++ | Accepted | 57 MS | 1256 KB | 237 | 2026-01-28 14:30:31 |
#include<bits/stdc++.h> using namespace std; int main(){ char s[10000001]; int i=0; cin>>s; while(s[i]!='\0'){ if(s[i]>='0' and s[i]<='9'){ i++; continue; }else{ cout<<s[i]; i++; } } return 0; }