博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于我
阅读量:7062 次
发布时间:2019-06-28

本文共 757 字,大约阅读时间需要 2 分钟。

前置代码:

1 #include 
2 #include
3 #include
4 #define rgi register int 5 #define il inline 6 #define ll long long 7 8 using namespace std; 9 10 il int read()11 {12 rgi x = 0, f = 0, ch;13 while(!isdigit(ch = getchar())) f |= ch == '-';14 while(isdigit(ch)) x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();15 return f ? -x : x;16 }17 18 il void write(int x)19 {20 if(x < 0) putchar('-'), x = -x;21 if(x > 9) write(x / 10);22 putchar(x % 10 + 48);23 }24 25 int main()26 {27 return 0;28 }

 

代码规范:

-A1 --indent=tab=4 --indent-classes --indent-switches --indent-namespaces --indent-preprocessor -p -xe -W3 -k3

 

转载于:https://www.cnblogs.com/Clever-Jimmy/p/About_Me.html

你可能感兴趣的文章
NYOJ176 整数划分(二)
查看>>
Linux下利用script命令录制并回放终端会话
查看>>
spark SQL学习(load和save操作)
查看>>
两小时入门 Docker
查看>>
主从复制延时判断
查看>>
render 和 redirect 的区别
查看>>
tomcat由浅入深
查看>>
IOS 手势-轻点、触摸、手势、事件
查看>>
Java并发编程系列
查看>>
WCF中配置文件解析
查看>>
Skyline培训完,做的程序代码
查看>>
Header:请求头参数详解
查看>>
转:BASH数组
查看>>
第八课:日期的扩展与修复
查看>>
关于字符数组要注意的一个小问题
查看>>
GNU ARM嵌入式汇编注释方法
查看>>
xml file too big to import to wordpress website
查看>>
python初学小结二:Import、字符串切片、列表的切片、enumerate()说明、字典、ptyhon-copy()与deepcopy()区别...
查看>>
shell脚本切割tomcat的日志文件
查看>>
HTML5 Video Player概览
查看>>