factor.c -- 使用循环和递归计算阶乘

来源:互联网 发布:曹轩宾可惜不是你知乎 编辑:程序博客网 时间:2024/06/15 06:39
/* factor.c -- 使用循环和递归计算阶乘 */
#include <stdio.h>
long fact(int n);
long rfact(int n);
 
int main(void)
{
    int num;
 
    printf("This program calculates factorials.\n");
    printf("Enter a valus in the ranges 0~12 (q to quit):\n");
    while (scanf("%d", &num) == 1)
    {
        if(num < 0)
            printf("No negative numbers, please.\n");
        else if(num > 12)
            printf("Keep input under 13.\n");
        else
        {
            printf("loop: %d factorial =  %ld\n", num, fact(num));
            printf("recursion: %d factorial =  %ld\n", num, rfact(num));
        }
        printf("Enter a valus in the ranges 0~12 (q to quit):\n");
    }
    printf("Bye.\n");
 
    return 0;
}
 
long fact(int n)   //使用循环的函数
{
    long ans;
    for (ans = 1; n > 1; n--)
        ans *= n;
     
    return ans;
}
 
long rfact(int n)   // 使用递归的函数
{
    long ans;
    if (n > 0)
        ans = n * rfact(n -1);
    else
        ans = 1;
 
    return ans;
}
0 0