首页 > 其他 > 详细

我的代码转风格了

时间:2015-06-22 13:36:34      阅读:224      评论:0      收藏:0      [点我收藏+]

以后开始用宏定义与缩行了

缺省原:

技术分享
#include<cstdio>
#include<cctype>
#include<queue>
#include<cstring>
#include<algorithm>
#define rep(s,t) for(int i=s;i<=t;i++)
#define ren for(int i=first[x];i!=-1;i=next[i])
using namespace std;
inline int read() {
    int x=0,f=1;char c=getchar();
    for(;!isdigit(c);c=getchar()) if(c==-) f=-1;
    for(;isdigit(c);c=getchar()) x=x*10+c-0;
    return x*f;
}
int main() {
    return 0;
}
View Code

 

我的代码转风格了

原文:http://www.cnblogs.com/wzj-is-a-juruo/p/4593181.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!