Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155390 张蔚林 删除数字字符 C++ Time Limit Exceeded 1000 MS 1256 KB 227 2026-06-07 11:13:09

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ char z[1000001]={}; cin>>z; int i=0; while(z[i]!='\0'){ if(z[i]>='0'&&z[i]<='9'){ continue; } else{ cout<<z[i]; } i++; } return 0; }