第二章 算法——程序的靈魂

第二章 算法——程序的靈魂 例2.18 用C語言輸出5! 例2.19 求1-1/2+1/3-1/4+···+1/99-1/100的值 例2.18 用C語言輸出5! #include<stdio.h> int main() { int i,t=1; for(i=2;i<=5;i++) { t=t*i; } printf("5!=%d",t); return 0; } 運行結果如下:
相關文章
相關標籤/搜索