注意:此页面搜索的是所有试题
题目内容
(安阳师范学院-计算机基础与程序设计)
下面程序的功能是将字符串s中所有的字符.c.删除。请选择填空。
#include
main( )
{ char s[80];
int i,j;
gets(s);
for(i=j=0;s[i]!= .\0.;i++ )
if(s[i]!= .c.) ① ;
s[j]= .\0.;
puts(s);
}
#include
main( )
{ char s[80];
int i,j;
gets(s);
for(i=j=0;s[i]!= .\0.;i++ )
if(s[i]!= .c.) ① ;
s[j]= .\0.;
puts(s);
}
参考答案