OpenJudge 2973 Skew数
摘要:
1 #include<stdio.h> 2 int main() 3 { 4 int i,s,t,sum; 5 char skew[32]; 6 while(scanf("%s",skew)) 7 { 8 for(sum=t=i=0;skew[i];i++) 9 {10 sum=(sum<<1)+skew[i]-'0';11 t+=skew[i]-'0';12 }13 sum=(sum<<1)-t;14 if(!sum) break... 阅读全文
posted @ 2012-08-02 16:10 mycapple 阅读(279) 评论(0) 推荐(0) 编辑