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

读入读出挂

时间:2018-10-01 19:14:04      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:color   code   tchar   char   oid   get   span   int   putc   

正数

 1 void re(int &x)
 2 {
 3     x=0;char s=getchar();
 4     while(s<0||s>9) s=getchar();
 5     while(s>=0&&s<=9){x=x*10+s-0;s=getchar();}
 6 }
 7 void wr(int x)
 8 {
 9     if(x>9) wr(x/10);
10     putchar(x%10+0);
11 }

正负

 1 void re(int &x)
 2 {
 3     int f=1;x=0;char s=getchar();
 4     while(s<0||s>9){if(s==-)f=-1;s=getchar();}
 5     while(s>=0&&s<=9){x=x*10+s-0;s=getchar();}
 6     x*=f;
 7 }
 8 void wr(int x)
 9 {
10     if(x<0){putchar-; x=-x;}
11     if(x>9)wr(x/10);
12     putchar(x%10+0);
13 }

 

完。

读入读出挂

标签:color   code   tchar   char   oid   get   span   int   putc   

原文地址:https://www.cnblogs.com/redblackk/p/9735256.html

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