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

模板备份

时间:2020-03-05 20:44:22      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:using   long   amp   std   main   备份   space   ret   pre   

开局一小板:

#include<bits/stdc++.h>
namespace kwx {
    using namespace std;
    #define LL long long
    LL read() {
        char c=getchar();
        LL sum=0;
        while(c<'0'||c>'9') {
            c=getchar();
        }
        while(c>='0'&&c<='9') {
            sum=(sum<<3)+(sum<<1)+c-'0',c=getchar();
        }
        return sum;
    }
    void write(LL x) {
        if(x>9) {
            write(x/10);
        }
        putchar(x%10+'0');
    }
}
using namespace kwx;
int main() {
//  freopen(".in","r",stdin);
//  freopen(".out","w",stdout);
    return 0;
}

模板备份

标签:using   long   amp   std   main   备份   space   ret   pre   

原文地址:https://www.cnblogs.com/Sam2007/p/12422390.html

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