标签:return int div char code 取数 读取 inline get
看看模拟人脑读取的快读:
//只能用于读取数字 inline int read() { int x=0,f=1;char ch=getchar(); while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();} while(ch>=‘0‘&&ch<=‘9‘){x=x*10+ch-‘0‘;ch=getchar();} return x*f; }
标签:return int div char code 取数 读取 inline get
原文地址:http://www.cnblogs.com/linda-fcj/p/7208397.html