ランダムなテキスト ファイルを生成しました
A B C D E F G H
T W G X Z R L N
A = T 、 B = W 、 C = G などのようにメッセージをエンコードしたい..
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int
main ()
{
string getmsg;
ifstream openfile ("random.txt");
if (openfile.is_open ()) {
while (! openfile.eof ()) {
getline (openfile,getmsg); //read from random.txt
cout << getmsg << endl;
}
}
}
ここでかなり立ち往生しています。
例えば。「HAD」という単語を入力すると、「NTX」と表示され、同じランダム テキスト ファイルを使用して「NTX」と入力し、「HAD」を返すことができます。