34 lines
989 B
C
34 lines
989 B
C
/*-----------------------------------------------------------------------
|
||
【程序设计】
|
||
-------------------------------------------------------------------------
|
||
题目:随机输入一字符串(不包含空格,长度不超过100),删除字符串中的数字
|
||
字符后输出。
|
||
例如
|
||
【请输入字符串:】I will graduate from high school in June 2025
|
||
【去掉数字后的字符串为:】I will graduate from high school in June
|
||
-------------------------------------------------------------------------
|
||
注意:请勿改动程序中的其他内容,请勿重新定义变量名。
|
||
------------------------------------------------------------------------*/
|
||
#include <stdio.h>
|
||
#include <string.h>
|
||
int main()
|
||
{
|
||
char a[100], b[100];
|
||
int l, i, j;
|
||
printf("【请输入字符串:】");
|
||
gets(a);
|
||
l = strlen(a);
|
||
j = 0;
|
||
/**********Program**********/
|
||
for(i=0;i<l;i++){
|
||
if(a[i]<'0'||a[i]>'9'){
|
||
b[j++] = a[i];
|
||
}
|
||
}
|
||
/********** End **********/
|
||
b[j] = '\0';
|
||
printf("【去掉数字后的字符串为:】");
|
||
puts(b);
|
||
return 0;
|
||
}
|