我需要检查字典文本文件中是否存在单词,我想我可以使用 strcmp,但我实际上并不知道如何从文档中获取一行文本。这是我目前坚持的代码。
#include "includes.h"
#include <string>
#include <fstream>
using namespace std;
bool CheckWord(char* str)
{
ifstream file("dictionary.txt");
while (getline(file,s)) {
if (false /* missing code */) {
return true;
}
}
return false;
}