2010年6月25日

摘要: 1.   return (a&&b) || (b&&c) || (a&&c);2.   int count = 0;  if(a) count++;  if(b) count++;  if(c) count++;  return count >= 2;3. 卡诺图  return a?(b||c):(b&&c);4.  retu... 阅读全文
posted @ 2010-06-25 11:44 o0myself0o 阅读(2285) 评论(0) 推荐(0)

导航