题目内容:
以下程序的功能是将字符串s中的数字字符放入d数组中,最后输出d中的字符串。例如,输入字符串:abc123edf456gh,执行程序后输出:123456。请填空。 #include
#include
main()
{chars[80],d[80];inti,j;
gets(s);
for(i=j=0;s[i]!='\0';i++)
if((20)){d[j]=s[i];j++;}
d[j]='\0';
puts(d);
}
参考答案:
答案解析: