之间网

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

企业动态
导读 您好,今天帅帅来为大家解答以上的问题。c语言函数调用例子swap,c语言函数调用例子相信很多小伙伴还不知道,现在让我们一起来看看吧!1、举

您好,今天帅帅来为大家解答以上的问题。c语言函数调用例子swap,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;}。

本文就为大家分享到这里,希望小伙伴们会喜欢。

标签: