我的 CS50 Vigenere 代码有什么问题?

What's wrong with my CS50 Vigenere code?

我已经为此兜兜转转几个小时了。它管理推荐测试的第一个单词(上午 11 点在公园见我)越过第一个空格,为 m 给出一个正确的字母,然后在结束前打印几个空格。非常感谢。

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

int allstralpha();

int main(int argc, string argv[])
{
    string keyw = argv[1];
    if(argc == 2 && allstralpha(keyw))
    {
        string plaint = GetString();
        int c = 0;
        int kl = strlen(keyw);
        int k = 0;
        int p = 0;
        int j = 0;
        for(int i = 0, n = strlen(plaint); i < n; i++)
        {      
            if(isalpha(plaint[i]))
            {        
                if(isupper(keyw[j]))
                {
                    k = keyw[(j % kl)] - 65;
                    if(isupper(plaint[i]))
                    {
                        p = plaint[i] -65;
                        c = ((k + p) % 26) + 65;
                        printf("%c", (char) c);                     
                    }   
                    else if(islower(plaint[i]))
                    {
                        p = plaint[i] -97;
                        c = ((k + p) % 26) + 97;
                        printf("%c", (char) c);
                    }
                }
                else if(islower(keyw[j]))
                {   
                    k = keyw[(j % kl)] - 97;
                    if(isupper(plaint[i]))
                    {  
                        p = plaint[i] - 65;                                  
                        c = ((k + p) % 26) + 65;             
                        printf("%c", (char) c);

                    }
                    else if(islower(plaint[i]))
                    {
                        p = plaint[i] - 97; 
                        c = ((k + p) % 26) + 97;
                        printf("%c", (char) c);
                    }   
                }
                j++;    
            }
            else
            {
                printf("%c", (char) plaint[i]);
            }
        }       
    }
    else
    {
        printf("Sorry that is not a vaild parameter\n");
        return 1;
    }  
}
int allstralpha(string s)
{   
    for(int i = 0, n = strlen(s); i < n; i++)
    {
        if(!isalpha(s[i]))
        {
        return 0;
        }
    }
    return 1; 
}
int allstralpha();
int allstralpha(string s)
{   
...
}

您的函数定义和声明不匹配。你应该声明 int allstralpha(string s);

主线第一行:

int main(int argc, string argv[])
{
    string keyw = argv[1];
    ...
}

首先你应该在访问argv[1]

之前检查if (argc > 1)

对于实际代码本身,您提供了纯文本,但我看不到关键字。

我使用 wikipedia, vigenère cipher 中的这些值进行测试:

Plaintext:  ATTACKATDAWN
Key:        LEMONLEMONLE
Ciphertext: LXFOPVEFRNHR

完成此操作的最少代码:

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

int main(int argc, const char* argv[])
{
    const char *str = "Meet me at the park at eleven am";
    const char *key = "bacon";

    int keylen = strlen(key);
    int len = strlen(str);
    for (int i = 0, j = 0; i < len; i++)
    {
        int c = str[i];
        if (isalnum(c))
        {
            //int k = function of key and `j`...
            //offset k...
            if (islower(c))
            {
                c = (c - 'a' + k) % 26 + 'a';
            }
            else
            {
                c = (c - 'A' + k) % 26 + 'A';
            }
            j++;
        }
        putchar(c);
    }
    putchar('\n');
    return 0;
}