怎么编写求一个数的阶乘的程序
问题描述:
怎么编写求一个数的阶乘的程序
答
2种方案,假设下面都是求数字num的阶乘
1循环
int i = 1;
int fac = 1;
while(i