这是我到目前为止所拥有的内容,但这不会在文本文件的未定长度中读取
#include <iostream>
#include <string>
#include <fstream>
using namespace std ;
int main()
{
char *file_name = "doc.txt" ;
ifstream fin ;
fin.open( file_name ) ;
if( ! fin ) {
cout << "Problems opening " << file_name << endl ;
return -1 ;
}
const unsigned MAX = 100 ;
string doc[MAX] ;
unsigned word_count = 0 ;
while( fin >> doc[ word_count ] )
{
cout << doc[ word_count ] << endl ;
word_count ++ ;
}
fin.close() ;
return 0 ;
}