ASCII字符在简单的C程序中搞砸了

时间:2014-12-07 06:04:32

标签: c cryptography cs50 caesar-cipher

我为分配编写了这个简单的程序,但是当我输入文本时,输出给了我符号而不是字符。任何帮助,将不胜感激。我不知道为什么我的输出会出现这种情况,但程序似乎编译得很好。也许它正在工作,我需要用数学进行基础测试,看看它是否正常运行。无论如何,如果有人在这看到错误,反馈非常感谢。

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

string Crypto(string, int); // rotation


int main(int argc, string argv[])
   {
    int k = 0;
    // error checing
    if (argc == 0 || argc == 1 || argc > 2)
   {
        // get mad
        printf("Enter 1 integer as an argument.  Stop messing around!\n Try Again: ");
        return 1;
   }
    else
   {
        //create command line arguments to be stored into k
        k = atoi(argv[1]);
        k = k * 1;
   }

    // Get text to be encrypted
    printf("Enter the text you want to encrypt: \n");
    string a = GetString();

    string b = Crypto(a, k);
    printf("%s\n", b);

    return 0;
 }

 //Now let's get cryptic
 string
 Crypto(string a, int k)
 {
    int c = 0;
    for (int i = 0, n = strlen(a); i < n; i++)
    {
        if(a[i] >= 65 && a[i] <= 90)
        {
            c = ((26 - (91 - a[i] + k) % 26));
            a[i] = c + 'A';
        }
        else
        {
            c = ((26 - (123 - a[i] + k % 26)));
            a[i] = c + 'a';
        }
     }
     return a;
  }

1 个答案:

答案 0 :(得分:1)

在函数Crypto中,您需要附加一个\0(null)字符来表示字符串的结尾。在return a;之前,写一个a[i+1] = '\0';语句。