我想从另一个函数中获取一个值以在我的 HangMan 游戏中使用。目前它在数组中使用多个名称的字符串,但我希望它使用下面的函数,该函数从我的字典中选择一个随机单词。
我累了
string word;
cout << "Press enter to begin search";
std::getline(std::cin, word);
Word *myWord = Dic.ListRandomWord();
这似乎打印出随机单词,但它不用于 HangMan。
我想从另一个函数中获取一个值以在我的 HangMan 游戏中使用。目前它在数组中使用多个名称的字符串,但我希望它使用下面的函数,该函数从我的字典中选择一个随机单词。
我累了
string word;
cout << "Press enter to begin search";
std::getline(std::cin, word);
Word *myWord = Dic.ListRandomWord();
这似乎打印出随机单词,但它不用于 HangMan。