![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
1 int read() 2 { 3 int t=0,f=1; 4 char ch=getchar(); 5 while(ch<'0' || ch>'9') 6 { 7 if(ch=='-') f=-1; 8 ch=getchar(); 9 } 10 while(ch>='0' && ch<='9') {t=t*10+ch-'0';ch=getchar();} 11 return t*f; 12 }
![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
1 inline int read() 2 { 3 int t=0,f=1; 4 char ch=getchar(); 5 while(!isdigit(ch)) {if(ch=='-') f=-1;ch=getchar();} 6 while(isdigit(ch)){t=t*10+ch-'0';ch=getchar();} 7 return t*f; 8 }
原来我普及组莫名其妙爆零是因为read写错了。。
以下这段话可以充分的体现我现在的心情:
“惨象,已使我目不忍视了;流言,尤使我耳不忍闻。我还有什么话可说呢?我懂得衰亡民族之所以默无声息的缘由了。沉默呵,沉默呵!不是在沉默中爆发,就是在沉默中灭亡。”