Dev C++设置代码模板 贼爽

工具-》编译器选项-》代码-》缺省源-》把

#include<bits/stdc++.h>
#define endl '\n'
#define _for(i,a,b) for(int i=a;i<b;i++)
using namespace std;
const int N = 1e5+5;
typedef long long ll;
int main(){
    ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);

    return 0;
}

粘贴进去,然后打上对勾,下次新建就不用打头文件了。

猜你喜欢

转载自www.cnblogs.com/SunChuangYu/p/12432938.html
Dev
今日推荐