對拍

生成數據ios

#include <cstdio>
#include <iostream>
#include <ctime>
#include <windows.h> 

using namespace std;
int main()
{
	srand(time(0));
	int a, b;
	a = rand()%100 + 1;
	b = rand()%100 + 1;
	printf("%d %d",a,b); 
	return 0;
}

對拍windows

#include <cstdio>
#include <iostream>
#include <windows.h>

using namespace std;
int main()
{
	int t = 10;
	while(--t)
	{
		system("data.exe > data.txt");
		system("a+b.exe < data.txt > a+b.txt");
		system("baoli.exe < data.txt > baoli.txt");
		if(system("fc a+b.txt  baoli.txt"))  break;
	}
	if(t != 0) printf("error\n");
	else printf("no error\n");
	return 0;
}

過樣例後必定要造數據,
用小數據找錯誤,大數據看邊界。
而後對拍。大數據

話說,只會打暴力的我爲何要對拍
但願不久以後個人對拍能派上用場。spa

相關文章
相關標籤/搜索