标签:方法 code etc class ret int div color read
1 int read()//快速读入 2 { 3 int x=0,f=1;char ch=getchar(); 4 while(ch<‘0‘||ch>‘9‘) 5 { 6 if(ch==‘-‘) 7 f=-1; 8 ch=getchar(); 9 } 10 while(ch>=‘0‘&&ch<=‘9‘) 11 { 12 x=x*10+(ch-‘0‘); 13 ch=getchar(); 14 } 15 return f*x; 16 }
标签:方法 code etc class ret int div color read
原文地址:https://www.cnblogs.com/zhaohongjie/p/12601960.html