Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
130639 郑景文 删除数字字符 C++ Accepted 84 MS 1256 KB 276 2025-09-14 15:45:04

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ char a[1000000]; cin>>a; for(int i=0;i<=1000000;i++){ if(a[i]=='\0'){ break; } if(a[i]<='9'&&a[i]>='0') { continue; } else{ cout<<a[i]; } } }