Linux下codeblocks设置main.cpp模板

版权声明:本文纯属作者口胡,欢迎转载 https://blog.csdn.net/TQCAI666/article/details/86650498

打开 /usr/share/codeblocks/templates/console-main-cpp.cpp
写入

#include <bits/stdc++.h>
#define FF(a,b) for(int a=0;a<b;a++)
#define F(a,b) for(int a=1;a<=b;a++)
#define LEN 510000
#define INF 1000000
#define bug(x) cout<<#x<<"="<<x<<endl;

using namespace std;

int main(){
	freopen("./in","r",stdin);
    return 0;
}

猜你喜欢

转载自blog.csdn.net/TQCAI666/article/details/86650498
今日推荐