如题所述
#include<stdio.h>
int main()
{char s[200],*p,*q;
gets(s);
for(p=q=s;*p;p++)
if(*p<'0'||*p>'9')*q++=*p;
*q='\0';
puts(s);
return 0;
}