1. 程式人生 > >模板1——快速讀入

模板1——快速讀入

取數 line spa code log turn getc getchar etc

看看模擬人腦讀取的快讀:

//只能用於讀取數字


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*10+ch-0;ch=getchar();}
    return x*f;
}

模板1——快速讀入