为什么我的字母无法实现替换??
为什么我的字母无法实现替换??其他的都做出来了 就是字母那块替换无法替换!我输入a 加3变成d 然后我输入df(用f替换d)结果老师替换不了 望各位帮我看看拿出来问题?4循环输入字符串,把字符串的所有小写字母+3,例如是a就变成d,如果是z就变成c,并把所有输入的字符串保存来。
1) 如果输入字符串等于“output”,打印出保存的所有字符串,然后结束程序。(不保存“output")
2) 如果输入的字符串等于“replace”,实现替换功能。提示用户输入要被替换的字母和替换后的字母,然后对前面保存过的字符串实现替换。
#include<string.h>
{
int i;
char str[50]="",str1[6],x,y;
while(1)
{
printf("please input char:");
scanf("%s",str1);
if(strcmp(str1,"output")==0)
{
printf("%s",str);
break;
}
if(strcmp(str1,"replace")==0)
{
printf("请输入替换的字母与替换后的字母");
scanf("%c%c",&x,&y);
while(str[i]!='\0')
{
if(str[i]==x)
str[i]=y;
i++;
}
printf("%s\n",str);
break;
}
i=0;
while(str1[i]!='\0')
{
if(str1[i]>='a'&&str1[i]<='z')
str1[i]=(str1[i]-'a'+3)%26+'a';
i++;
}
strcat(str,str1);
}
}
[此贴子已经被作者于2007-7-14 17:17:44编辑过]