码迷,mamicode.com
首页 > 编程语言 > 详细

C++对拍程序

时间:2018-10-28 15:00:37      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:break   har   style   make   心态   putchar   void   ring   std   

考场没心态,担心程序写挂

这时写一个对拍程序就可以大大降低你的担心

所以背个板子就可以了:

#include<iostream>
#include<cmath>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<string>
#include<algorithm>
#include<windows.h> 
using namespace std;
inline int min(int a,int b){return a<b?a:b;}
inline int max(int a,int b){return a>b?a:b;}
inline int rd(){
    int x=0,f=1;
    char ch=getchar();
    for(;!isdigit(ch);ch=getchar()) if(ch==-) f=-1;
    for(;isdigit(ch);ch=getchar()) x=x*10+ch-0;
    return x*f;
}
inline void write(int x){
     if(x<0) putchar(-),x=-x;
     if(x>9) write(x/10);
     putchar(x%10+0);
     return ;
}
int main(){
    while(1){
        system("make");//生成新数据 
        system("force");//运行暴力程序 
        system("a+b");//运行要对拍的程序 
        if(system("fc force.out a+b.out")) break;//比对文件 
    }
    return 0;
}

 

C++对拍程序

标签:break   har   style   make   心态   putchar   void   ring   std   

原文地址:https://www.cnblogs.com/WWHHTT/p/9865367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!