释放时出现分段错误,但调试时很好? CS50数组凯撒分配

时间:2020-04-27 14:04:00

标签: c cs50

关于分段错误,我有几个问题,为什么在调试代码时可以正常运行,但是在发布时却出现分段错误?我在网上阅读了说调试会强制代码以正确的顺序运行的信息,因为我遵循的是数组的cs50课程,所以我的编码知识才到此为止。请提供有关我的代码的一些反馈,我正在尝试寻找改进我非常长且不整洁的代码的方法。非常感谢你。

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

int main(int argc, string argv[])
{
    if (argc != 2) 
    {
        printf("Usage: ./caesar key\n");
        return -1;
    }
    int n = strlen(argv[1]);
    for (int z = 0; z < n; z++)
    {
        if (isalpha (argv[z]))
        {
            printf("Usage: ./caesar key\n");
        }
    }

    if (argc == 2)
    {    
        {   
            int key = atoi(argv[1]);
            string plaintext = get_string("Plaintext: ");
            int y = strlen(plaintext);
            printf ("Ciphertext: ");
            for (int i = 0; i < y; i++)
            {
                if (key >= 26)
                {
                    printf("%c", (char) plaintext[i] + (key % 26));
                }
                else if (key < 26)
                {
                    printf("%c", (char) plaintext[i] + key);
                }
            }
        }
    }
    return 0; 
}

0 个答案:

没有答案