以下程序的运行结果是()#include iostream

12 查阅

以下程序的运行结果是()#include iostream

int func(int n)

{

if(n==1) return 1;

else return (n*func(n-1));

}

int main()

{

int x;

x=fun(3);

coutxendl;

}

A.5

B.6

C.7

D.8

参考答案:

答案:6