问题
下列程序的输出结果为 #include<iostream.h> intfunc(intn) { if〔n<1)return1
下列程序的输出结果为
#include< iostream. h>
int func(int n)
{
if〔n<1)return 1;
else return n+tune(n-1):
return 0;
}
void main()
{
cout$amp;A. 0
B.10
C.15
D.16
请帮忙给出正确答案和分析,谢谢!