赞
踩
问题描述:
代码示例:
//递归求阶乘 #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; }
运行结果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。