填空题

阅读下面代码,输出的结果是( )  

def f(n):
    if n <= 1:
        return n
    return f(n-2)*2 - f(n-1) + n
print(f(5))
赣ICP备20007335号-2