freopen是这么写的吧:(到底是一个e还是两个?)
#include <bits/stdc++.h> using namespace std; int main(){ /* xxx */ freopen("XXX.in", "r", stdin); freopen("XXX.out", "w", stdout); /* xxx */ return 0; }
代码存盘的时候有什么要注意的吗?
有没有什么格式要求?
(蒟蒻第一次考啥也不懂)