C-你就成了我(字符串替换)

Description

编写一个C程序实现将字符串中的所有”you”替换成”we”

Input

输入包含多行数据
每行数据是一个字符串,长度不超过1000
数据以EOF结束

Output

对于输入的每一行,输出替换后的字符串
Sample Input**
you are what you do
Sample Output
we are what we do

参考解答:

#include
char str[1002];
int main()
{
  int i;
  while(gets(str)!=NULL)
  {
    i=0;
    for(i=0;str[i]!='\0';i++)
        if(str[i]=='y'&&str[i+1]=='o'&&str[i+2]=='u')
        {
            printf("we");
            i+=2;
        }
        else
        {
            printf("%c",str[i]);
        }
        printf("\n");
  }
  return 0;
}

你可能感兴趣的:(C-你就成了我(字符串替换))