快乐学习
一个网站喵查铺子(catpuzi.com)全搞定~
> 中国大学MOOC答案 > 写出以下递归程序的运行结果#include
using namespace std;
void f(int x[]. Int n)
{
if(n > 1)
{
f(&x[1],n-1);
cout << x[0];
}
else
cout << x[0];
}
int main()
{
int z[6]={1,2,3,4,5,6};
f(z,6);
cout<<”\n”;
return 0;
}
-->
喵查答案:654321