void PrintTableBody(){
ifstream input ; // 从文件到程序的流。
input.open("jobs.txt") ;
if( !input.is_open() ) // error checking.
{
cerr << "Cannot find the file jobs.txt" << endl;
// return -1 ;
}
while(true){ // read from file
int intValue ;
input >> intValue ;
if(input.fail()) break ;
}
input.close() ;
input.clear() ;
}
int myInteger ;
fstream fstr ;
fstr.open("job.txt") ;
fstr >> myInteger ;
fstr.close() ;