以下是一个C语言程序,可以读入一串字符串,去除其中的空格和数字字符,并输出结果。程序会一直读取输入,直到遇到回车符为止。 ```c #include <stdio.h> #include <ctype.h> int main() { char str[100]; int i = 0; printf("请输入字符串(以回车结束):\n"); while (1) { char c = getchar(); ...