C++编程基础二 06-递归函数

 1 // C++函数和类 06-递归函数.cpp: 定义控制台应用程序的入口点。
 2 //
 3 
 4 #include "stdafx.h"
 5 #include <iostream>
 6 #include <string>
 7 #include <climits>
 8 #include <array>
 9 #include <math.h>
10 
11 using namespace std;
12 long fact(int i);
13 int main()
14 {
15     int num;
16     cout << "请输入一个10以内的正整数:" << endl;
17     cin >> num;
18     long res = fact(num);
19     cout << num << "的阶乘为:"<<res << endl;
20     return 0;
21 }
22 
23 long fact(int i)
24 {
25     long temp;
26     if (i == 0)
27     {
28         temp = 1;
29     }
30     else
31     {
32         temp = i * fact(i - 1); 
33     }
34     return temp;
35 }

 

转载于:https://www.cnblogs.com/uimodel/p/9348580.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值