单选题

有如上函数定义,则调用 fun (6) 得到的返回结果为 ( )

int fun(int x){

    if(x<=1) return 1;

    if(x>=5) return x*fun(x-2);

    return x*fun(x-1);

}

A

720

B

180

C

144

D

48

赣ICP备20007335号-2