我是编程新手,我正在尝试用 C 语言编写一个用于凯撒密码的程序。
输入包含一个等于字符串长度的整数 ilength,后跟字符串 str 和一个整数 encrypt。
我的输入是:
11
middle-Outz
2
输出:
okffng-Qwv@
所需的输出是:
okffng-Qwvb
下面是我写的代码。有人可以帮助我为什么我在输出中弄错了最后一个字符!
我完全一无所知。
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main()
{
int ilength = 0, encrypt = 0, i = 0, j = 0;
char alph_base[] = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
scanf("%d", &ilength);
char str[ilength + 1];
scanf("%s", str);
scanf("%d", &encrypt);
//printf("%c\n", str[5]);
char outputString[ilength + 1];
char temp[ilength + 1];
for (j = 0; j <= ilength; j++)
{
temp[j] = str[j];
i = 0;
if (str[j] == '\0')
{
outputString[j] = '\0';
}
while ((i >= 0) && (i < 26))
{
if (temp[j] == alph_base[i])
{
if (i == 25 && encrypt == 0)
{
outputString[j] = alph_base[25];
}
if ((i + encrypt) == 26)
{
outputString[j] = alph_base[(i + encrypt) % 26];
}
else
outputString[j] = alph_base[(i + encrypt) % 26];
}
if ((temp[j] < 65 || temp[j] > 90) && temp[j] < 97)
outputString[j] = temp[j];
if ((temp[j] < 97 || temp[j] > 122) && temp[j] > 90)
outputString[j] = temp[j];
i++;
}
while ((i > 25) && (i < 52))
{
if (temp[j] == alph_base[i])
{
if (i == 51 && encrypt == 0)
{
outputString[j] = alph_base[51];
}
if ((i + encrypt) == 51)
{
outputString[j] = alph_base[51];
}
if ((i + encrypt) > 51)
{
outputString[j] = alph_base[((i + encrypt) % 51) + 25];
}
else
outputString[j] = alph_base[(i + encrypt) % 51];
}
if ((temp[j] < 65 || temp[j] > 90) && temp[j] < 97)
outputString[j] = temp[j];
if ((temp[j] < 97 || temp[j] > 122) && temp[j] > 90)
outputString[j] = temp[j];
i++;
}
}
printf("%s\n", outputString);
return 0;
}