快读

作者: JalorOo | 来源:发表于2020-05-29 19:21 被阅读0次
    int read(){
        int x=0,f=1;
        char c = getchar();
        while(c<'0'||c>'9'){//符号位
            if(c=='-')
                f=-1;
            c = getchar();
        }
        while(c>='0'&&c<='9'){//数字
            x = x*10 + c -'0';
            c=getchar();
        }
        return x*f;
    }
    

    相关文章

      网友评论

          本文标题:快读

          本文链接:https://www.haomeiwen.com/subject/topmahtx.html