如何用c语言编:输入一字符串,将其中所有的大写英文字母+3,小写英文字母-3,然后再输出加密后的字符串

2024-11-17 07:56:43
推荐回答(3个)
回答(1):

#include
main()
{
char c,b;
printf("请输入字符:\n");
while((c=getchar())!='\n')
{
if(c>='a'&&c<='z')
b=c-3;
else if(c>='A'&&c<='Z')
b=c+3;
printf("%c",b);
}
printf("\n");
}
程序已经运行码败过了,大写字母的后三位和小写字母的启笑前三位因为运算后已经超迟旁颤过了字母的范围,输出的是别的字符,如果有其他的要求再提出来.

回答(2):

#include
int main(){
int i,len;
char st[100];
printf("please input a string\棚晌n");
scanf("%s",st);
printf("加密前:\n%s\n"链伍锋 , st);
for(i = 0 ; st[i] ; i++){
if ( st[i] >= 'a' && st[i] <= '橘告z')
st[i] -= 3;
else if (st[i] >= 'A' && st[i] <= 'Z')
st[i] += 3;
}
printf("加密后:\n%s\n" , st);
fflush(stdin);
getch();

}

回答(3):

#include
main(){
char s[]={""};
int i;
gets(s);
for (i=0;s[i]!='\0';i++){
if (s[i]>粗燃='谈凳并a' && s[i]<='z'){
s[i]-=3;
}else if(s[i]>='A'含迹 && s[i]<='Z'){
s[i]+=3;
}
}
puts(s);
}