function box(num) { if(num <= 1) { return 1; } } else { return num * box(num-1); } alert(box(4));
怎么階乘的 內(nèi)部是怎么運算的
慕勒3428872
2019-03-12 17:19:52