P29_1.CPP
资源名称:ds1-3.rar [点击查看]
上传用户:chaiyuqiu
上传日期:2022-08-03
资源大小:27k
文件大小:0k
源码类别:
数据结构
开发平台:
C/C++
- float rsum ( float a[], const int n ) {
- int count=0;
- count++;
- if ( n <= 0 ) {
- count++;
- return 0;
- }
- else {
- count++;
- return rsum ( a, n-1 ) + a[n-1];
- }
- }