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

快读模版

时间:2018-08-29 16:54:48      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:ret   read   etc   static   pre   sdi   int   color   tchar   

 1 inline void read(int &x){
 2     char ch;
 3     bool flag=false;
 4     for (ch=getchar();!isdigit(ch);ch=getchar())if (ch==-) flag=true;
 5     for (x=0;isdigit(ch);x=x*10+ch-0,ch=getchar());
 6     x=flag?-x:x;
 7 }
 8 inline void write(int x){
 9     static const int maxlen=100;
10     static char s[maxlen];
11         if (x<0) {   putchar(-); x=-x;}
12     if(!x){ putchar(0); return; }
13     int len=0; for(;x;x/=10) s[len++]=x % 10+0;
14     for(int i=len-1;i>=0;--i) putchar(s[i]);
15 }

想到再加。。。

快读模版

标签:ret   read   etc   static   pre   sdi   int   color   tchar   

原文地址:https://www.cnblogs.com/Yum20/p/9555138.html

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