C語言經典案例(10~~12)

(10)題目:求1+2!+3!+...+5!的和spa /* Note:Your choice is C IDE */ #include "stdio.h" main() { int n,s=0,t=1; for(n=1;n<=5;n++)  {  t*=n;  s+=t;  } printf("1+2!+3!...+5!=%d\n",s); }blog (11)利用遞歸方法求5! 排序  /*
相關文章
相關標籤/搜索