我必须根据密钥和密码(最多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;
}
最佳答案
正如评论中提到的,您必须更改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
。