gpt4 book ai didi

c++ - 简单的密码程序没有正确重置

转载 作者:行者123 更新时间:2023-11-28 01:20:04 25 4
gpt4 key购买 nike

为了好玩,我正在学习编程和 C++ 作为我的第一语言。我正在尝试创建一个简单的程序来加密和解密输入,以便我可以练习使用字符串。

一切正常,但不知何故,当我第二次再次运行该程序时,我最终会弹出旧输入。

例如,如果我输入“greg”,然后解密,然后再次输入 greg,我会得到两个“greg”(已加密)- 所以它没有正确重置,它将继续添加新词而不重置。

#include <iostream>
#include <string>

using namespace std;

int main() {
string alphabet{"a b c d e f g h i j k l m n o p q r s t u v w x y z 1 2 3 4 "
"5 6 7 8 9 0"};
string key{"m h i p g f b t x u r l w a j e q k z d y v o c n s 9 5 0 7 8 2 "
"3 4 1 6"};
string word{};
string secretword{};
string decryptedword{};
int selection{};
// int newpos {};
int position{};
//int keypos{};

do {
cout << "-------------------------------------" << endl;
cout << "Select an Option: " << endl;
cout << "1: Encrypt" << endl;
cout << "2: Decrypt" << endl;
cout << "3: Quit" << endl;

cin >> selection;

if (selection == 1) {
cout << "Enter a Word to Encrypt:";
cin.sync();
getline(cin, word);

for (auto i : word) {
if (isupper(i)) {
cout << "Please use lower case only" << endl;
break;
}

position = alphabet.find(i);
secretword += key.at(position);
}
cout << "Encrypted Word: " << secretword << endl;
secretword = "";
}

if (selection == 2) {
cout << "Enter a Word to Decrypt: ";
cin.sync();
getline(cin, secretword);

for (auto i : secretword) {
if (isupper(i)) {
cout << "Please use lower case only" << endl;
break;
}
position = key.find(i);
decryptedword += alphabet.at(position);
}

cout << "Decrypted Word: " << decryptedword << endl;
decryptedword = "";
}
} while (selection != 3);

return 0;
}

最佳答案

该程序使用secretword 作为加密输出和解密输入,并且从不清除它。糟糕。

与其清除变量,不如缩小它们的范围,这样它们就不需要被清除,也不会发生冲突。例如:

#include <iostream>
#include <string>

using namespace std;

int main()
{
string alphabet { "a b c d e f g h i j k l m n o p q r s t u v w x y z 1 2 3 4 "
"5 6 7 8 9 0" };
string key { "m h i p g f b t x u r l w a j e q k z d y v o c n s 9 5 0 7 8 2 "
"3 4 1 6" };
//int keypos{};

int selection;
do
{
cout << "-------------------------------------" << endl;
cout << "Select an Option: " << endl;
cout << "1: Encrypt" << endl;
cout << "2: Decrypt" << endl;
cout << "3: Quit" << endl;

cin >> selection;

if (selection == 1)
{
cout << "Enter a Word to Encrypt:";
cin.sync();
string word;
string secretword;
getline(cin, word);

for (auto i : word)
{
if (isupper(i))
{
cout << "Please use lower case only" << endl;
break;
}

auto position = alphabet.find(i);
secretword += key.at(position);
}
cout << "Encrypted Word: " << secretword << endl;
secretword = "";
}

if (selection == 2)
{
cout << "Enter a Word to Decrypt: ";
cin.sync();
string secretword;
string decryptedword;
getline(cin, secretword);

for (auto i : secretword)
{
if (isupper(i))
{
cout << "Please use lower case only" << endl;
break;
}
auto position = key.find(i);
decryptedword += alphabet.at(position);
}

cout << "Decrypted Word: " << decryptedword << endl;
decryptedword = "";
}
} while (selection != 3);

return 0;
}

请注意,这并不总是正确的答案,它会影响性能,但您需要做的手动簿记工作越少越好。仅当您无法满足性能目标时才使代码复杂化,并且仅使分析证明是重大问题的代码复杂化。

关于c++ - 简单的密码程序没有正确重置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56814255/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com