C++中,快读怎么使用
时间: 2024-05-15 21:17:20 浏览: 108
探寻C++快的读取文件的方案
要使用快读(快速读入),需要在代码开头加上以下两行:
```
#include <cstdio>
inline int read()
{
int num = 0;
char ch;
while((ch = getchar()) < '0' || ch > '9');
while(ch >= '0' && ch <= '9')
num = (num << 1) + (num << 3) + (ch ^ 48), ch = getchar();
return num;
}
```
然后,在需要读入数据时,使用 `read()` 函数即可,例如:
```
int n = read();
```
阅读全文