mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
5 lines
84 B
C
5 lines
84 B
C
float fun(int n) {
|
|
if (n == 1) return 1;
|
|
return 1.0 / (1.0 + fun(n - 1));
|
|
}
|