在vc++6.0中编写程序完成下面的计算1! + 2! + 3! + ... + 99! + 100!
时间: 2023-11-28 19:46:22 浏览: 61
libstdc++.so.6.0
以下是在VC++6.0中编写程序完成计算1! + 2! + 3! + ... + 99! + 100!的方法:
```c++
#include <iostream>
using namespace std;
int main()
{
int sum = 0;
int factorial = 1;
for (int i = 1; i <= 100; i++)
{
factorial *= i;
sum += factorial;
}
cout << "1! + 2! + 3! + ... + 99! + 100! = " << sum << endl;
return 0;
}
```
阅读全文