测试大数据
我们需要将测试文件(cpp)和大数据放在 同一文件夹 下。
然后在测试文件里加上这么一段代码:
freopen("大数据的输入文件名.in","r",stdin);
freopen("自定义输出文件名.out","w",stdout);
然后我们还需要再写一个运行程序并保存在 这个文件夹 下。代码如下:
#include<bits/stdc++.h>
using namespace std;
int main(){
if(!system("fc 自定义输出文件名.out 大数据的输出文件名.out")) puts("AC");
else puts("WA");
return 0;
}
然后运行这个程序,如果输出(AC)就说明你的答案对啦。
对拍
不会的点这里