标签:
void readfile(string filepath){
ifstream myfile;
if (!myfile) {
cout << "打开文件出错!";
exit(1);
}else{
myfile.open(filepath);
string ss;
while(getline(myfile,ss))//着行读取数据并存于s中,直至数据全部读取
{
cout<<ss<<endl;
}
system("pause");
myfile.close();
}
}
标签:
原文地址:http://www.cnblogs.com/anna-sz/p/5669871.html