C++程序读入二进制文件,将其以文本格式输出

2024年11月28日 12:54
有1个网友回答
网友(1):

string str;
ifstream in("filename");//讲filename换成你要读取的文件
while(getline(in,str))
    cout<