我做了一本字典。我的目标是让用户输入新词并定义它们。
我想我已经把“定义词”的部分写下来了,其余的都写下来了。我在下面写了一个我正在寻找的例子。我不希望有人为我做这件事;我只是想知道是否有办法做到这一点以及我可以在哪里了解更多信息。
现在,我正在使用 C++ for Dummies 和 Sam 的 Teach Yourself For Teachers。
string newword
string word
cout << "Please enter a word" >> endl;
cin >> word;
if (word == newword)
{
create string <newword>; // Which would make the following
// source code appear without
// actually typing anything new
// into the source code.
}
string newword
string word
string word2 // which would make this happen
cout << "Please enter a word" >> endl;
cin >> word;
if (word == newword)
{
create string <newword>
}