快读快写 2021.5.23

Posted 飞。畅

tags:

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

 


#include<bits/stdc++.h>
using namespace std;
inline int read()
{
    int x=0,f=1;  char ch=getchar();
    while(ch<\'0\'||ch>\'9\'){if(ch==\'-\') f=-1; ch=getchar();}
    while(ch>=\'0\'&&ch<=\'9\'){ x=(x<<1)+(x<<3)+(ch^48); ch=getchar();}
    return x*f;
}
void write(int x)
{
    if(x<0) putchar(\'-\'),x=-x;
    if(x>9) write(x/10);
    putchar(x%10+\'0\');
}
int main()
{
    int n;
    n=read();
    write(n);
    return 0;
}

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

快读快写模板

Java快读快写

C++ 快读快写模板

浅谈快读快写

模板

快读快输