快读模版

Posted yum20

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快读模版相关的知识,希望对你有一定的参考价值。

 1 inline void read(int &x){
 2     char ch;
 3     bool flag=false;
 4     for (ch=getchar();!isdigit(ch);ch=getchar())if (ch==-) flag=true;
 5     for (x=0;isdigit(ch);x=x*10+ch-0,ch=getchar());
 6     x=flag?-x:x;
 7 }
 8 inline void write(int x){
 9     static const int maxlen=100;
10     static char s[maxlen];
11         if (x<0) {   putchar(-); x=-x;}
12     if(!x){ putchar(0); return; }
13     int len=0; for(;x;x/=10) s[len++]=x % 10+0;
14     for(int i=len-1;i>=0;--i) putchar(s[i]);
15 }

想到再加。。。

以上是关于快读模版的主要内容,如果未能解决你的问题,请参考以下文章

使用Visual Studio Code自定义代码模版

使用 Git 来管理 Xcode 中的代码片段

vscode设置vue模版

大数据-快读

快读与快写的实现

关于快读