【转】对拍程序模板
一、写在前面
特别鸣谢Reddest大爷对博主的大♂力帮助。原文作者Reddest,故本篇blog不对代码做任何特别解释,想看讲解的看官老爷们可以移步Reddest大爷原文,链接→_→对拍程序讲解及源码举例——Reddest(不过背景很辣眼睛就是了_(:з」∠)_
二、对拍程序模板
数据生成器:
1 #include <stdio.h> 2 #include <ctime> 3 #include <cstdlib> 4 using namespace std; 5 int main() 6 { 7 srand(time(0)); 8 int a,b; 9 a=rand();b=rand(); 10 printf("%d %d",a,b); 11 return 0; 12 }
对拍:
1 #include <stdio.h> 2 #include <windows.h> 3 using namespace std; 4 int main() 5 { 6 int t=100; 7 while(t--) 8 { 9 system("data>Input.in"); 10 system("force<Input.in>force.out"); 11 system("std<Input.in>std.out"); 12 if(system("fc force.out std.out")) break; 13 } 14 system("pause"); 15 return 0; 16 }
弱弱地说一句,本蒟蒻码字也不容易,转载请注明出处http://www.cnblogs.com/Maki-Nishikino/p/6003017.html