摘要: 1 #include 2 #include 3 #include 4 inline int getint() { 5 register char ch; 6 while(!isdigit(ch=getchar())); 7 register int x=ch^'0'; 8 while(isdigit(ch=getchar())) x=(((x<<2... 阅读全文
posted @ 2017-12-05 20:48 skylee03 阅读(224) 评论(0) 推荐(0) 编辑