码迷,mamicode.com
首页 > 其他好文 > 详细

读入优化模板

时间:2019-02-13 17:00:25      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:while   sdi   etc   java   read   code   getch   line   int   

inline int read(){
    int s = 0,f = 1;
    char ch;
    ch = getchar();
    while(!isdigit(ch)){
        if(ch == '-') f = - 1;
        ch = getcahr();
    }
    while(isdigit(ch)){
        s = s*10 + ch - '0';
        ch = getcahr();
    }
    return s*f;
}

读入优化模板

标签:while   sdi   etc   java   read   code   getch   line   int   

原文地址:https://www.cnblogs.com/Zforw/p/10370631.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!