2025-03-31 19:37:23 +08:00

34 lines
989 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*-----------------------------------------------------------------------
【程序设计】
-------------------------------------------------------------------------
题目随机输入一字符串不包含空格长度不超过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;
}