Dev-C++中编写程序 编写程序计算11! - 3! - 8! ,并输出计算结果程序基本框架如下,请将程序补充完整 函数功能: 计算n的阶乘int jicheng(int n)
时间: 2024-03-14 18:46:32 浏览: 132
好的,下面是Dev-C++中计算11! - 3! - 8! 的程序代码:
```c++
#include <iostream>
using namespace std;
// 计算n的阶乘
int jicheng(int n) {
int result = 1;
for (int i = 1; i <= n; i++) {
result *= i;
}
return result;
}
int main() {
// 计算11! - 3! - 8!
int result = jicheng(11) - jicheng(3) - jicheng(8);
cout << "11! - 3! - 8! = " << result << endl;
return 0;
}
```
程序中使用了一个函数`jicheng`来计算n的阶乘,然后在`main`函数中调用该函数计算11!、3!、8!,最后将它们相减得到结果并输出。
阅读全文