一周前,我开始学习C ++,我正在尝试创建一些简单的东西。
下面有一个简单的消息加密器。
我想将加密的消息存储到变量或其他内容中。当您键入生成的加密消息时,它需要显示原始消息。我怎样才能做到这一点?
谢谢...
string alphabet {"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"};
string message1 {};
srand(time(NULL));
cout << "Enter secret message: ";
getline(cin, message1);
cout << "\nEncrypting the message..." << endl;
cout << "\nEncrypted message: ";
for (size_t i{0}; i < message1.length(); i++)
cout << alphabet.at(rand() % alphabet.size());
cout << endl;