BUPT-homework/semester1/pset8/1-values.c

22 lines
287 B
C
Raw Normal View History

2021-11-11 14:28:02 +08:00
// #include <stdio.h>
//
// int fuc(int n);
//
// int main() {
// int n;
//
// scanf("%d", &n);
// printf("%d\n", fuc(n));
//
// return 0;
// }
/* 请在这里填写答案 */
int fuc(int n) {
if (n == 0) {
return 0;
} else {
return fuc(n - 1) + n * n * n;
}
}