两道编程题. 第一道,一对兔子五个月成年便可以生兔子,给一对兔子求n月有多少对,动态规划。 if __name__ == '__main__': dp = [0, 1, 1, 1, 1, 2] n = int(input()) if n > 5: &nbs...