c_cpp recursive_pow_and_fact

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp recursive_pow_and_fact相关的知识,希望对你有一定的参考价值。

float recPow(float x, float power){
    if (power < -1.0) return  recPow(x, power + 1) / x;
    if (power == -1.0) return 1.0 / x;
    if (power == 0.0) return 1.0;
    if (power == 1.0) return x;
    if (power > 1.0) return x * recPow(x, power - 1);
    else return 0;
}

long recFact(int x){
    if (x < 0) return  0;
    if (x == 0) return 0;
    if (x == 1) return 1;
    if (x > 1) return x * recFact(x - 1);
    else return 0;
}


int main(){
    int n = 0;
    int i = 0;
    for(n = 0; n <= 10.0; n++){
        printFloat(recPow(2.0, n));
    }
    printLineBreak();
    for(n = 0; n <= 10; n++){
        printLong(recFact(n));
    }
	return 0;
}

以上是关于c_cpp recursive_pow_and_fact的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 127.单词阶梯

c_cpp MOFSET

c_cpp MOFSET

c_cpp 31.下一个排列

c_cpp string→char *

c_cpp 54.螺旋矩阵