1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-27 08:26:20 +00:00
202401-programming-assignments/【实践课内】11.函数2/6-2 递归实现指数函数.c

5 lines
98 B
C
Raw Permalink Normal View History

2024-11-22 08:22:46 +00:00
double calc_pow(double x, int n) {
if (n == 0) return 1;
return x * calc_pow(x, n - 1);
}