标签:col code style return int get div tchar line
inline int read() { int X=0,w=1; char c=getchar(); while (c<‘0‘||c>‘9‘) { if (c==‘-‘) w=-1; c=getchar(); } while (c>=‘0‘&&c<=‘9‘) X=(X<<3)+(X<<1)+c-‘0‘,c=getchar(); return X*w; }
拿走不谢QwQ
标签:col code style return int get div tchar line
原文地址:https://www.cnblogs.com/gongcheng456/p/10945686.html