诸位大哥 以下这道题我老师无法替换字母 不知道为什么?谁能给我解答 谢谢
在 C语言论坛发了1天 问题还没解决没解决 发到这里麻烦大家了
循环输入字符串,把字符串的所有小写字母+3,例如是a就变成d,如果是z就变成c,并把所有输入的字符串保存起来。
a)
如果输入字符串等于“output”,打印出保存的所有字符串,然后结束程序。(不保存“output”)。
b) 如果输入的字符串等于“replace”,实现替换功能。提示用户输入要被替换的字母和替换后的字母,然后对前面保存过的字符串实现替换。
#include<stdio.h>
#include<string.h>
void main()
{
int i;
char str[50]="",str1[8];//
char x,y;
while(1)
{
printf("please input string:");
scanf("%s",str1);
if(strcmp(str1,"output")==0)
{
printf("%s",str);
break;
}
if(strcmp(str1,"replace")==0)
{
printf("请输入被替换和替换的字母");
scanf("%c%c",&x,&y);
i=0;
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);
}
}