In a certain deck ofcards, each card has a positive integer written on it. In a multiplication game, a child draws acard and multiplies the integer on the card by the next larger integer. If each possible product is between 15 and200, then the least and greatest integers on the cards could be
3 and 15
3 and 20
4 and 13
4 and 14
5 and 14
这题解题思路:相邻两数相乘要大于等于15并且小于等于200
那就是:X(X+1)>15 X(X+1)
3*4=12,4*5=20,5*6=30
13*14=182,14*15=210>200,
13*14=182,14*15=210>200,所以最大数应该是13
纠错信息里我填了,没收到?有不等式登录 或 注册 后可以参加讨论
输入了什么留言变成15了?登录 或 注册 后可以参加讨论
设卡片上最大的数字是X,则x(x+1)
这道题我错在了,注意题目问的是最小的最大的,那么就应该是最小的数乘以比他大一的数,最大的数乘以比他小一的数,注意是比他小一的数。。。
我也遇到一样的问题,发纠错了登录 或 注册 后可以参加讨论
multiplies the integer on the card by the next larger integer
乘以比这张牌数字大一个数的整数