c语言函数的调用(c语言函数调用例子)

时间:2024-04-25 10:00:14 来源:
导读 今天之间网归一为大家解答以上的问题。c语言函数的调用,c语言函数调用例子相信很多小伙伴还不知道,现在让我们一起来看看吧!1、举一个用递...

今天之间网归一为大家解答以上的问题。c语言函数的调用,c语言函数调用例子相信很多小伙伴还不知道,现在让我们一起来看看吧!

1、举一个用递归调用函数求输入非负整数的阶乘的例子。

2、如下://#include "stdafx.h"//If the vc++6.0, with this line.#include "stdio.h"int fact(int n){    if(n==1 || n==0) return 1;    else return n*fact(n-1);}int main(void){    int x;    while(1){        printf("Input x(int 12>=x>=0)...x=");        if(scanf("%d",&x),x>=0 && x<=12)//x>12时会使结果溢出            break;        printf("Error,redo: ");    }    printf("%d! = %d",x,fact(x));    return 0;}。

本文就为大家分享到这里,希望大家看了会喜欢。

标签:
最新文章