gpt4 book ai didi

CS50 PSET 2 凯撒错误结果

转载 作者:行者123 更新时间:2023-11-30 20:33:06 27 4
gpt4 key购买 nike

我以为我已经完成了 Caesar,但是当运行 CHeck50 时,我的代码因以下原因失败:使用 23 作为 key 将“barfoo”加密为“yxocll”输出无效的 ASCII 文本日志运行./凯撒 23...正在发送输入 barfoo...检查输出“密文:yxocll”...

有人能看出我的代码有什么问题吗?它似乎适用于大写字母,但对于小写字母和某些“键”,我得到了错误的结果,并且无法找出原因。任何帮助将不胜感激。

示例:如果我尝试使用 key 17 加密“foo”,它应该返回“wff”,但我的代码仅返回“w”。在我编写的代码中,它说要转到位置 128,这不是一个字母,但我的代码则说如果超过 122,则减去 26。这等于并返回“102”,- 这是“f” 。是否与删除被分配给127有关

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

int main(int argc, string argv[])
{
if (argc == 2) {
int a = atoi (argv[1]);
int b = a%26;
printf("plaintext: ");
//get string
string s = get_string();
printf ("ciphertext: ");
//iterate through string
for (int i=0, n =strlen(s); i<n; i++) {
//check if character is a letter
if ( isalpha (s[i])) {
//check if letter is uppercase
if (isupper (s[i])) {
//calculate position of character in ASCI by adding 'Key'. If character is over 90, decrease character location by 26
char c = (s[i] + b);
if (c > 90) {
char d = c - 26;
printf ("%c", d);
} else
printf("%c", c);
} else
//For lowercase letters. If character location is over position 122, decrease location by 26
{
char e = (s[i] + b);
if (e>122) {
char f = e - 26;
printf("%c", f);
} else
printf("%c", e);
}
} else //print non letters with no change made
{
printf ("%c", s[i]);
}
}
}
printf ("\n");
return 0;

}

最佳答案

使用小写字母,您可能会遇到溢出:

char e = (s[i] + b);

在您的系统上,char 是有符号的,这意味着它可以采用 -128 到 127 之间的值。采用小写 z,即 ASCII 122。将其移动 6 位或更多,然后你溢出了你的char。有符号整数溢出是未定义的行为。您可以通过将中间值设置为 ints 来解决此问题:

int e = (s[i] + b);

关于CS50 PSET 2 凯撒错误结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46325018/

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