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

快读。。。

时间:2018-07-31 10:57:36      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:||   一个   amp   etc   span   pre   temp   read   就是   

就是一个板子。。。

template <class T>
void read(T &x){
    char c;
    bool op = 0;
    while(c = getchar(), c < 0 || c > 9)
        if(c == -) op = 1;
    x = c - 0;
    while(c = getchar(), c >= 0 && c <= 9)
        x = x * 10 + c - 0;
    if(op) x = -x;
}
template <class T>
void write(T x){
    if(x < 0) putchar(-), x = -x;
    if(x >= 10) write(x / 10);
    putchar(0 + x % 10);
}

 

快读。。。

标签:||   一个   amp   etc   span   pre   temp   read   就是   

原文地址:https://www.cnblogs.com/DukeLv/p/9394055.html

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