int fac(int n){ int f; if (n==0) f=1; else f=n*fac(n-1); return f; }
posted on 2015-08-16 21:08 马文强 阅读(118) 评论(0) 收藏 举报