[摘要]:pycharm如何写1到10十个数字的阶乘呢?int multn(int n){ return n*multn(n-1); } void main(){ long sum=0; for (int i=1;i<=10;i++) sum+=multn...