鱼C论坛

 找回密码
 立即注册
查看: 909|回复: 1

求助!想知道为什么这段代码运行的时候总是显示Segmentation fault。

[复制链接]
发表于 2020-7-8 09:25:51 | 显示全部楼层 |阅读模式
5鱼币
这段代码在argv[1]的位置应输入的是数字,但是每次运行的时候,比如./ caesar 2,就会显示Segmentation fault。豪无头绪,请大神帮忙!
#include <cs50.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>

int main(int argc, string argv[])
{
     if (argc == 2 && isdigit(argv[1]))
     {
         int key = atoi(argv[1]);
         string plaintext = get_string("plaintext: ");
         printf("ciphertext: ");
         for (int i = 0, len = strlen(plaintext); i < len; i++)
         {
             char c = plaintext[i];
             
             if (isalpha(c))
             {
                 if (islower(c))
                 {
                     printf("%c", (((c - 97) + key) % 26) + 97);
                     
                 }
                 if (isupper(c))
                 {
                     printf("%c", (((c - 65) + key) % 26) + 65);
                     
                 }
                 else
                 {
                     printf("%c", c);
                     
                 }
             }
         }
         return 0;
     }
     else
     {
         printf("Usage: ./caesar key\n");
     return 1;
     }
}

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-7-8 09:38:00 | 显示全部楼层
get_string 
是什么,不记得有这个库函数。

segmentation fault 通常都是修改非法地址导致的。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 13:28

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表