社区讨论
关于freopen
灌水区参与者 6已保存回复 17
讨论操作
快速查看讨论及其快照的属性,并进行相关操作。
- 当前回复
- 17 条
- 当前快照
- 1 份
- 快照标识符
- @m2a49q1t
- 此快照首次捕获于
- 2024/10/15 15:23 去年
- 此快照最后确认于
- 2025/11/04 23:54 4 个月前
如果想开io优化,应该是
CPP#include<bits/stdc++.h>
using namespace std;
int main()
{
//freopen(".in","r",stdin);
//freopen(".out","w",stdout);
ios::sync_with_stdio(0);
cin.tie(0);
return 0;
}
还是
CPP#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
//freopen(".in","r",stdin);
//freopen(".out","w",stdout);
return 0;
}
回复
共 17 条回复,欢迎继续交流。
正在加载回复...