1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 21:58:41 +00:00
202401-programming-assignments/【实践课外】11.函数2/6-1 计算A[n]=1_(1 + A[n-1]).c

5 lines
84 B
C
Raw Normal View History

2024-11-22 09:14:26 +00:00
float fun(int n) {
if (n == 1) return 1;
return 1.0 / (1.0 + fun(n - 1));
}