2.编写程序输入一个字符串,删除字符串中的所有数字字符后输出此字符串.
定义一个一维字符数组;
(2)输入一串测试字符;
(3)依次判断数组中字符是否为数字(即>‘0’且<‘9’);
(4)若是则将后面所有字符依次往前移一位;
(5)输出整个字符串
#include<粗历stdio.h>
char* str_del_num(char *des, char *res)
{
int r, d= 0;
for(r= 0; res[r]!='\0'; r++)
{
if(res[r]<'0'册族 || res[r]>'9')
des[d++]= res[r];
}
des[d]= '\0'岩姿搜;
return des;
}
void main()
{
char a[100], b[100];
gets(a);
puts(str_del_num(b, a));
}