C++文件操作之freopen 发表于 2023-02-23 分类于 2023 阅读次数: C++文件操作之freopen12freopen("xxx.in","r",stdin); //输入文件freopen("xxx.out","w",stdout); //输出文件1234567891011121314#include<cstdio>#include<iostream>using namespace std;int main(){ freopen("a+b.in","r",stdin); freopen("a+b.out","w",stdout); //以上是模板 int a,b; cin>>a>>b; cout<<a+b<<endl; return 0;}-------------本文结束感谢您的阅读-------------老板你好,讨口饭吃打赏微信支付支付宝本文作者: 毛本文链接: http://example.com/2023/02/23/C++文件操作之freopen/版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!