标签:决定 while put div col lin tchar log 输出
读入优化:
1 inline int read() 2 { 3 int X=0,w=1; char ch=0; 4 while(ch<‘0‘ || ch>‘9‘) {if(ch==‘-‘) w=-1;ch=getchar();} 5 while(ch>=‘0‘ && ch<=‘9‘) X=(X<<3)+(X<<1)+ch-‘0‘,ch=getchar(); 6 return X*w; 7 }
输出优化:
1 inline void write(int x) 2 { 3 if(x<0) putchar(‘-‘),x=-x; 4 if(x>9) write(x/10); 5 putchar(x%10+‘0‘); 6 }
决定以后每天打一遍。
标签:决定 while put div col lin tchar log 输出
原文地址:http://www.cnblogs.com/shamman/p/7455819.html