摘要:
#includeint count;int gcd(int a,int b) {if(b==0)return a; return gcd(b,a%b);}int seach(int a) {if(a%2==0) {count++;return seach(a/2);}if(a%3==0) {cou... 阅读全文
posted @ 2013-12-08 23:24
HYDhyd
阅读(154)
评论(0)
推荐(0)
浙公网安备 33010602011771号