輸入一個數求其階乘(while循環和for循環)

#include <stdio.h> //輸入一個整數,求其階乘 //做者:wsg int main(void) { int a; printf("Please input integer a:\n"); scanf("%d", &a); int i = 1; int num = 1; //使用for循環 /************* for( ; i<=a; i++)
相關文章
相關標籤/搜索