楼上厉害! 顺便再问一道 寂静的 12题 12. in a survey of the number of goose, scientists harvest A (数字忘记了)个 eggs and select 2 eggs out of 90% nests have more than 5 eggs, and there are B nests that have 4 eggs. There are no other nests. So what is the total number of nests surveyed ? -- by 会员 650wansui (2010/6/15 20:18:21)
这道题目应该是同 302.remove egg from nest 一共remove了N 个(已知),都是是从拥有90%的大于5个egg的nest里remove,一个nest里remove2个, 然后告诉了你有小于等于4个egg的nest的个数,问你总共有多少个nest(看懂题目就可,这是我的第一题,差点没看懂)
题目的意思应该是这样的:从一个窝里面拿鸡蛋,从90%的(大于5个egg的)nest里面拿,每个窝拿两个,再告诉你小于等于4个蛋的窝有多少个,求总共有多少个窝 根据题目可以知道窝有两种类型,一个有大于5个蛋的,一个是有小于等于4个蛋的 所以求数量就是这两种类型相加 然后根据小米列的方程就可以求出来了 设<=4个蛋的nest有A个, 总nest数=(N/2)/90%+A |