求大佬帮忙看看这题咋做!
删除一个字符串中的数字,保留串中最开始的和结束部分的数字串,即把中间的数字串全部删除 程序的框架已经给出如下,请在一对注释中填写你的代码。修改注释对外部代码将被判失败。
#include <stdio.h>
#include <ctype.h>
void fun(char s[])
{
/***** Your code here ****/
/**** Your code end ****/
}
int main()
{
int N,i;
char txt[1024];
scanf("%d",&N);
getchar();
for(i=0;i<N;i++)
{
gets(txt);
fun(txt);
puts(txt);
}
return 0;
}