有以下函数定义,当n传入数为10时,返回值应为
int func (int n) { if (n == 1) return 1; else return func (n - 1) + n; }
45
55
66
1