首页 > 代码库 > 对拍程序

对拍程序

技术分享
#include<bits/stdc++.h>
using namespace std;
int main()
{
    int T; scanf("%d", &T);
    while(T--)
    {
        system("data > input.txt");
        system("a+b < input.txt > 1.out");
        system("test < input.txt > 2.out");
        if(system("fc 1.out 2.out")) 
        {
            system("pause");
            break;
        } 
    }
    return 0;
}
View Code

 

对拍程序