摘要: 1 int getsum(int a,int b) 2 { 3 return b==0?a:getsum(a ^ b,(a & b) << 1); 4 } 阅读全文
posted @ 2021-07-13 13:23 出来打酱油 阅读(46) 评论(0) 推荐(0) 编辑