快速读入输出模板
Posted longl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速读入输出模板相关的知识,希望对你有一定的参考价值。
inline int read() { char ch = getchar(); int x = 0, f = 1; while(ch < ‘0‘ || ch > ‘9‘) { if(ch == ‘-‘) f = -1; ch = getchar(); } while(‘0‘ <= ch && ch <= ‘9‘) { x = x * 10 + ch - ‘0‘; ch = getchar(); } return x * f; } inline void put(int x) { if (x < 0) x = ~x + 1, putchar(‘-‘); if (x > 9) put(x / 10); putchar(x % 10 + ‘0‘); }
以上是关于快速读入输出模板的主要内容,如果未能解决你的问题,请参考以下文章