给定如下函数(函数功能同上题,增加输出打印):
1 int fun(int n) { 2 cout << n << " "; 3 if (n == 1) return 1; 4 if (n == 2) return 2; 5 return fun(n - 2) - fun(n - 1); 6 }