大家好,这是我第一次写博客,请大家多多支持!
本文是作者原创文章,写了好几个小时,所以麻烦转载请注明出处!
目录
freopen重定向
fstream文件流
freopen 重定向
使用方法:
freopen(“in.txt”,“r”,stdin);//从in.txt读入
freopen(“out.txt”,“w”,stdout);//向out.txt输出
freopen(“CON”,“r”,stdin);//从控制台读入
freopen(“CON”,“w”,stdout);//向控制台输出
f