码迷,mamicode.com
首页 > 其他好文 > 详细

基本递归

时间:2015-11-20 17:07:03      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:

//求阶乘(不大于12)

#include<iostream>

using namespace std;

int digui(int th)

    if(th==1 || th==0)return 1;  
    else return digui(th-1)*th;
}
int main()
{
    int th;
    cin>>th;
    cout<<digui(th);
    system("pause");
    return 0;
}

递归就是自己调用自己。注意return之后的数值。

基本递归

标签:

原文地址:http://www.cnblogs.com/YXY-1211/p/4981037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!