填空题
以下程序的运行结果( ) #include
#include
int f(int a[],int n) {if (n>=1) return f(a,n-1)+a[n-1]; else return 0; }; void main
1
{int aa[5]={1,2,3,4,5},s; s=f(aa,5); cout<
1、
【正确答案】
1、15
【答案解析】
提交答案
关闭