c++模板文件,方便调试与运行时间的观察

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include <vector>
#include<algorithm>
#include<string>
#include<string.h>
#include<math.h>
#include <cstdio>
#include <queue>
#include<stack>

#define Watch_RunTime 1
#if Watch_RunTime
#include <ctime>
int start_time;
#endif

#define Max 3000
#define debug 1
using namespace std;


int main() {
#if debug
    freopen("in.txt", "r", stdin);
#endif
#if Watch_RunTime
    start_time = clock();
#endif

 

 



#if debug
    freopen("CON", "r", stdin);
#endif
#if Watch_RunTime
    cout << "\n\n\n\n-------\n";
    cout << clock() - start_time <<"ms";
#endif

    system("pause>nul");
    return 0;
}

上一篇:C/C++预处理指令#define,#ifdef,#ifndef,#endif…


下一篇:c:#ifndef, #define, #endif 作用