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