C++逐行读取txt中的数据,怎么保存并到数组中?

日期:2019-10-14 15:21:15 人气:2

C++逐行读取txt中的数据,怎么保存并到数组中?

刚刚写了个,自己看看吧,应该看得明白。 #include #include using namespace std; void main() { fstream file; file.open("s.txt",ios::in); if(!file) cout<<"file not founded"<<endl; int a [100]; int pos = 0; while(!file.eof()
    A+
热门评论