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

输入输出优化

时间:2017-10-12 20:20:06      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:输出   oid   turn   log   tchar   read   putc   style   bsp   


int
read_int() { int x,f=1; char c; while(c=getchar(),c<48||c>57) if(c==-)f=-f; x=c-48; while(c=getchar(),c>47&&c<58) x=x*10+c-48; return f*x; } void write_int(int x) { if(!x){ putchar(0); putchar( ); return ; } int num=0; char c[11]; while(x) c[++num]=x%10+48,x/=10; while(num) putchar(c[num--]); putchar( ); }

 

输入输出优化

标签:输出   oid   turn   log   tchar   read   putc   style   bsp   

原文地址:http://www.cnblogs.com/Gsimt/p/7657735.html

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