从输入文件C ++获取信息

时间:2017-07-05 18:48:25

标签: c++ file

我对编码很陌生,所以我不能完全确定我是否正确地进行文件提取。我将lldb作为此代码的输出。而不是使用hangman.dat文件中的单词提示用户。

#include <iostream>
#include <fstream>
#include <cstdlib>
using namespace std;

int main()
{
    ifstream sourceFile;
    sourceFile.open("hangman.dat");

    if (sourceFile.fail())
    {
        cout<<"File didn't open" ;
    }

    else
    {
        string words;
        sourceFile >> words;
        while(sourceFile>>words)
        {
            cout<<words<<endl;
        }
    }

}

文件hangman.dat包含以下信息:

Fall
leaves
Thanksgiving
pumpkins
turkey
Halloween

0 个答案:

没有答案