注意:
(1)fgets会读入’\0’和’\n’,故fgets中间的容量要比本来的数多2。
include [HTML_REMOVED]
include[HTML_REMOVED]
using namespace std;
int main()
{
char a[30],t;
fgets(a,32,stdin);
scanf(“%c”,&t);
int i,k;
k=strlen(a);
for(i=0; i<k; i++)
{
if(a[i]==t)
a[i]=’#’;
printf(“%c”,a[i]);
}
return 0;
}