c++ 快速读入
Posted wzy-sky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++ 快速读入相关的知识,希望对你有一定的参考价值。
1 inline read() 2 3 int s = 0, w = 1; 4 char ch = getchar(); 5 while (ch < ‘0‘ || ch > ‘9‘) 6 if (ch == ‘-‘) w = -1; 7 ch = getchar(); 8 while (ch >= ‘0‘ && ch <= ‘9‘) 9 s = s << 3 + s << 1 + ch - ‘0‘; 10 ch = getchar(); 11 12 return s * w; 13
调用如下
int main() int a, b; a = read(), b = read();
以上是关于c++ 快速读入的主要内容,如果未能解决你的问题,请参考以下文章