gpt4 book ai didi

c - 我的 CS50 Vigenere 密码程序有什么问题?

转载 作者:太空宇宙 更新时间:2023-11-04 07:17:46 25 4
gpt4 key购买 nike

我已经连续研究这个 Vigenere 密码大约 8 个小时了。你能帮我么?我认为主要问题在于算法 - 我不知道如何利用 key 长度(我知道我需要以某种方式获取它的模组)。

#include <stdio.h>
#include <cs50.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

int main(int argc, char *argv[])
{
if(argc != 2)
{
printf("Bad!");
return 1;
}
int keylen = strlen(argv[1]);
char *key = argv[1];
for (int i = 0; i < keylen; i++)
{
if(isupper(key[i]))
{
key[i] = key[i]-65;
}
else if(islower(key[i]))
{
key[i] = key[i]-97;
}
}
printf("Plaintext: ");
string p = GetString();
int k = 0;
for (int i = 0; i < strlen(p); i++)
{
if(isalpha(p[i]))
{
if(isupper(p[i]))
{
p[i] = ((p[i]-65)+(key[k % keylen]))%26 + 65;
}
else if(islower(p[i]))
{
p[i] = ((p[i]-97)+(key[k % keylen]))%26 + 97;
}
k++;
}
else
{
//I need to skip over antyhing that isn't a letter
p[i] = p[i];
}
}
printf("Ciphertext: %s\n", p);
}

最佳答案

第一个for循环有问题。条件正在检查 i > keylen什么时候应该检查 i < keylen .

同样在计算下一个输出值时,步骤应该是

(p[i]-'A') results in a number between 0 and 25
adding (key[i % keylen]) results in a number between 0 and 50
apply modulo 26 so the number is between 0 and 25 (this is the missing step)
then add 'A' to get the output

注意:避免对字符常量使用硬编码数字。例如,使用 'A'而不是 65,和 'a'而不是 97。

关于c - 我的 CS50 Vigenere 密码程序有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23208787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com