太多數字要輸入了!
寫一份程式,生成另一個程式的輸入檔
將輸出檔寫至檔案中
#include<fstream>
using namespace std;
int main(){
ifstream fin( //輸入的文件名 );
ofstream fout( //輸出的文件名 );
}
定義讀入檔案與輸出檔案的物件
#include<bits/stdc++.h>
using namespace std;
int main(){
ifstream fin("data.txt");
ofstream fout("ans.txt");
int a, b;
fin>>a>>b;
fout<<a+b<<"\n";
fin.close();
fout.close();//記得關閉檔案
cout<<"ok\n";
return 0;
}
然後他就可以做跟cin/cout一樣的事情
當然,是對檔案做處理
使用完記得關閉檔案
簡單啦
#include<bits/stdc++.h>
using namespace std;
int main(){
ofstream fout("test_data.txt");
srand(time(NULL));
int a=rand(), b=rand();
fout<<a<<" "<<b<<"\n";
fout.close();
cout<<"ok\n";
return 0;
}
當你吃了一堆WA
材料:
做法:
將測資給兩份程式碼跑,比較結果是否相同
#include<bits/stdc++.h>
using namespace std;
int main(){
for(int i=1;i<=1000;i++){
system("tioj2039_data.exe > data.txt");
system("tioj2039.exe < data.txt > try.out");
system("tioj2039_old.exe < data.txt > ans.out");
if(system("fc try.out ans.out > nul")){
cout<<"WA:\n";
system("fc try.out ans.out");
return 0;
} else{
cout<<"AC on testdata #"<<i<<"\n";
}
}
return 0;
}
格式: system("執行的檔案名 < 輸入的檔案 > 輸出的檔案")