#include <stdio.h> int main() { char str1[20],str2[20]; printf("输入字符串: "); gets(str1); int j=0; for(int i=0; i<20; i++){ if (str1[i]>='0' && str1[i]<='9'){ //空操作 }else{ str2[j] = str1[i]; j++; } } printf("字符串1: "); puts(str1); printf("字符串2: "); puts(str2); return 0; }