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

输入挂(减少时间)

时间:2018-05-02 16:06:44      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:bsp   ==   div   scan   完整   else   color   判断   int   

int Scan()

{

    int res = 0, ch, flag = 0;

    if((ch = getchar()) == -)             //判断正负

        flag = 1;

    else if(ch >= 0 && ch <= 9)           //得到完整的数

        res = ch - 0;

    while((ch = getchar()) >= 0 && ch <= 9 )

        res = res * 10 + ch - 0;

    return flag ? -res : res;

}

 

输入挂(减少时间)

标签:bsp   ==   div   scan   完整   else   color   判断   int   

原文地址:https://www.cnblogs.com/mayouyou/p/8979803.html

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