摘要: #include using namespace std; int fun(double countA, double countB, double maxA, double maxB){ if(maxA == 0)return min(maxB, countB); if(maxB == 0)return min(maxA, countA); in... 阅读全文
posted @ 2017-03-19 18:26 Vincent_Bryan 阅读(323) 评论(0) 推荐(0) 编辑