階乘---遞歸與循環

1、循環實現 #include<stdio.h> int main(void){     int n;     printf("n=");     scanf_s("%d", &n);     long product=1;//C語言中規定至少要給類型爲long int 型變量分配4個字節32位的空間     if (n <= 1)printf("%2d!=%ld", n, product);  
相關文章
相關標籤/搜索