给定如下函数:
int fun(int n) {
if (n == 1) return 1;
if (n == 2) return 2;
return fun(n - 2) - fun(n - 1);
}
则当 n = 7时,函数返回值为( )。
0
1
21
-11