当前位置:   article > 正文

机试:递归求阶乘

机试:递归求阶乘

问题描述:
在这里插入图片描述
代码示例:

 //递归求阶乘
#include <bits/stdc++.h>
using namespace std;

int getResult(int n){
	if(n == 1)return 1;
	else return n * getResult(n - 1);
} 

int main(){
	int n;
	cout << "样例输入" << endl; 
	cin >> n;
	int result = getResult(n);
	cout << "输出样例" << endl;	
	cout << result << endl;	
	
	return 0;
} 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

运行结果:
在这里插入图片描述

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号