当前位置:   article > 正文

复试1.2c++累乘器

c++累乘器

#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
double Accumulator(double iniN,double endN){
    double result = 1;
    if(iniN > endN){
        cout<<"error"<<endl;
        return -1;
    }
    cout <<"the iniN is:"<<iniN<<"\nthe endN is:"<<endN<<endl;
    while(iniN <= endN){
        result *= iniN;
        iniN = iniN+1;  
    }
    cout<<"the result is:"<<result<<endl;
    return result;
}

int main() {
    Accumulator(-10,-9);
    return 0;
}

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号