关于对拍

先生成随机数
```cpp
#include
#include
#include
#include
using namespace std;
long long seed;
int main()
{
	freopen("merge.in","w",stdout);
	seed=time(0);
	srand(seed);
	int n=20;//32768
	cout<<n<<endl;
	for(int i=1;i<=n;i++)
		cout<<rand()<<' ';
	fclose(stdout);
	return 0;
}
```
然后调用
```cpp
#include
#include
#include
using namespace std;
int main()
{
    int cnt=0;
    while(cnt<=100)
    {
        cnt++;
        system("start sjmaker.exe");
        Sleep(100);//防止未完成计算就执行,根据需要适当提高
        system("start baoli.exe");
        Sleep(200);
        system("start zhengjie.exe");
        Sleep(200);
        if(system("fc baoli.out zhengjie.out"))
        {
            system("pause");
            break;
        }
    }
}
```
posted @ 2018-12-11 00:03  Member  阅读(160)  评论(0编辑  收藏  举报