我非常喜欢 C++,最近有一个家庭作业,我需要将 1000 个最常见的单词存储到一个字符串数组中。我想知道我该怎么做。到目前为止,这是我的示例代码,
if(infile.good() && outfile.good())
{
//save 1000 common words to a string
for (int i=0; i<1000; i++)
{
totalWordsIn1000MostCommon++;
break;
}
while (infile.good())
{
string commonWords[1000];
infile >> commonWords;
}
}
谢谢!