c++怎么实现随机存取文件顺序读取数据

2025-04-03 13:23:00
推荐回答(1个)
回答1:

#include
#include
using namespace std;
int main()
{
fstream f("test.txt",ios::in);
char str[99]="";
while(f.getline(str,99))cout< f.close();
    return 0; 
}