我必须根据密钥和密码(最多4个字符)加移位方向,在C加密和解密中执行凯撒密码,所有这三个都是由用户给出的。
在我的代码中,它只走左边,当我进入右边时,它再次询问方向。我不知道怎么了。
这是我的代码:

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

char pass[4];
char shiftdirection[6];
char left[6] = "left";
char right[6] = "right";
char ch;
int i, key;

void readline (){ //cette fonction prend de l'utilisateur le password et la clé
    do{
    printf("Please enter the pass, max 4 characters: \n");
    gets(pass);
    }while((strlen(pass)>4) || (strlen(pass)<4)); //get the password from th
    printf("Please enter the key: \n");
    scanf("%d",&key);
}

//cette fonction utilisée pour chiffrer
void encrypt(){
    printf("Enter the direction: \n");
    scanf("%s", &shiftdirection);
    while ((strcmp(shiftdirection,left)==1) || (strcmp(shiftdirection,right)==1)) { // demander de l'utilisateur la direction de décalage

        printf("Enter the direction: \n");
        scanf("%s", &shiftdirection);
    }
    if(strcmp(shiftdirection,left)==0){ // si l'utilisateur a écrit left, le programme commence le chiffrage avec un décalage à gauche
    for( i = 0; pass[i] != '\0'; i++){
        ch = pass[i];
        if(ch >= 'a' && ch <= 'z'){
            ch = (char) (ch + key);
            if(ch > 'z'){
                ch = (char) (ch - 'z' + 'a' - 1);
            }
            pass[i] = ch;
        }
        else if(ch >= 'A' && ch <= 'Z'){
            ch = (char) (ch + key);
            if(ch > 'Z'){
                ch = (char) (ch - 'Z' + 'A' - 1);
                }
            pass[i] = ch;
            }
        }
    }
   else if(strcmp(shiftdirection,right)==0){ // si l'utilisateur a écrit left, le programme commence le chiffrage avec un décalage à gauche
        for( i = strlen(pass) - 1; i >= 0; --i){
            ch = pass[i];
            if(ch >= 'a' && ch <= 'z'){
                ch = (char) (ch + key);
                if(ch > 'z'){
                    ch = (char) (ch - 'z' + 'a' - 1);
                }
                pass[i] = ch;
            }
            else if(ch >= 'A' && ch <= 'Z'){
                ch = (char) (ch + key);
                if(ch > 'Z'){
                    ch = (char) (ch - 'Z' + 'A' - 1);
                }
                pass[i] = ch;
            }
        }
    }
    printf("Encrypted Password is %s", pass); // le password chiffré
}

//cette fonction utilisée pour déchiffrer
void decrypt(){
    for(i = 0 ; pass[i] != '\0' ; ++i){
        ch = pass[i];
        if(ch >= 'a' && ch <= 'z'){
            ch = (char) (ch - key);
            if(ch < 'a') {
                ch = (char) (ch + 'z' - 'a' + 1);
            }
            pass[i] = ch;
        } else if (ch >= 'A' && ch <= 'Z'){
            ch = (char) (ch - key);
            if(ch < 'A'){
                ch = (char) (ch + 'Z' - 'A' + 1);
            }
            pass[i] = ch;
        }
    }
    printf("\nDecrypted Password is %s", pass); //le password déchiffré
}
//main
int main() {
    readline();
    encrypt();
    decrypt();
    return 0;
}

c - 不接受用户输入的其他选项-LMLPHP

最佳答案

正如评论中提到的,您必须更改char pass[4] -> char pass[5]以考虑按return键时的\0\n
不要使用gets。使用fgets代替,因为gets是不安全的,不再是C的一部分
使用getchar()通过按回车键捕获剩余的\0
scanf更改为scanf_s以获得更安全的
您的while ((strcmp(shiftdirection,left)==1) || (strcmp(shiftdirection,right)==1))检查其中一个条件是否不正确,然后进入。您需要检查两个条件是否都不正确,因此您需要&&而不是||
我对你的代码做了一些修改,并提出了以下建议。
代码:

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

char pass[5];
char shiftdirection[6];
char left[6] = "left";
char right[6] = "right";
char ch;
int i, key;

void readline (){ //cette fonction prend de l'utilisateur le password et la clé
    do{
    printf("Please enter the pass, max 4 characters: \n");
    fgets(pass, sizeof pass, stdin);
    }while((strlen(pass)>4) || (strlen(pass)<4)); //get the password from th
    printf("Please enter the key: \n");
    scanf_s("%d",&key);
    getchar();
}

//cette fonction utilisée pour chiffrer
void encrypt(){
    printf("Enter the direction: \n");
    fgets(shiftdirection, sizeof shiftdirection, stdin);
    shiftdirection[strcspn(shiftdirection, "\n\r")] = 0;
    while ((strcmp(shiftdirection,left)==1) && (strcmp(shiftdirection,right)==1)) { // demander de l'utilisateur la direction de décalage

        printf("Enter the direction: \n");
        fgets(shiftdirection, sizeof shiftdirection, stdin);
        shiftdirection[strcspn(shiftdirection, "\n\r")] = 0;
    }
    if(strcmp(shiftdirection,left)==0){ // si l'utilisateur a écrit left, le programme commence le chiffrage avec un décalage à gauche
    for( i = 0; pass[i] != '\0'; i++){
        ch = pass[i];
        if(ch >= 'a' && ch <= 'z'){
            ch = (char) (ch + key);
            if(ch > 'z'){
                ch = (char) (ch - 'z' + 'a' - 1);
            }
            pass[i] = ch;
        }
        else if(ch >= 'A' && ch <= 'Z'){
            ch = (char) (ch + key);
            if(ch > 'Z'){
                ch = (char) (ch - 'Z' + 'A' - 1);
                }
            pass[i] = ch;
            }
        }
    }
   else if(strcmp(shiftdirection,right)==0){ // si l'utilisateur a écrit left, le programme commence le chiffrage avec un décalage à gauche
        for( i = strlen(pass) - 1; i >= 0; --i){
            ch =pass[i];
            if(ch >= 'a' && ch <= 'z'){
                ch = (char) (ch + key);
                if(ch > 'z'){
                    ch = (char) (ch - 'z' + 'a' - 1);
                }
                pass[i] = ch;
            }
            else if(ch >= 'A' && ch <= 'Z'){
                ch = (char) (ch + key);
                if(ch > 'Z'){
                    ch = (char) (ch - 'Z' + 'A' - 1);
                }
                pass[i] = ch;
            }
        }
    }
    printf("Encrypted Password is %s", pass); // le password chiffré
}

//cette fonction utilisée pour déchiffrer
void decrypt(){
    for(i = 0 ; pass[i] != '\0' ; ++i){
        ch = pass[i];
        if(ch >= 'a' && ch <= 'z'){
            ch = (char) (ch - key);
            if(ch < 'a') {
                ch = (char) (ch + 'z' - 'a' + 1);
            }
            pass[i] = ch;
        } else if (ch >= 'A' && ch <= 'Z'){
            ch = (char) (ch - key);
            if(ch < 'A'){
                ch = (char) (ch + 'Z' - 'A' + 1);
            }
            pass[i] = ch;
        }
    }
    printf("\nDecrypted Password is %s", pass); //le password déchiffré
}
//main
int main() {
    readline();
    encrypt();
    decrypt();
    system("pause");
    return 0;
}

注意shiftdirection[strcspn(shiftdirection, "\n\r")] = 0;检查字符串中是否有剩余的\n所以getchar()可能被替换。
我希望这就是你要找的
编辑:您的while((strlen(pass)>4) || (strlen(pass)<4));基本上是while(strlen(pass)!=4);这意味着pass应该总是4个字符长。是这样吗?或者用户也可以输入少于4个?
更新
检查了
再次出现状况,因为它是错误的。
把它改成
while ((strcmp(shiftdirection,left)==1) && strcmp(shiftdirection,right)==1))
当相应的while ((strcmp(shiftdirection,left)!=0) && (strcmp(shiftdirection,right)!=0))strcmp(shiftdirection,left)strcmp(shiftdirection,right)left时,该值为right-1

09-13 00:16