Run ID:101512
提交时间:2024-12-15 14:04:24
#include <iostream> using namespace std; int main(){ char s1[1000001]; int i=0; cin.getline(s1,100001); while(s1[i]!='\0'){ if(s1[i]>='0' && s1[i]<='9'){ i++; } else{ cout<<s1[i]; i++; } } return 0; }