编写程序计算SUM=1+1*2+1*2*3+……+1*2*3*…*100的和不好意思,是VB,要采用Do……Loop结构

问题描述:

编写程序计算SUM=1+1*2+1*2*3+……+1*2*3*…*100的和
不好意思,是VB,要采用Do……Loop结构

#include
using namespace std;
int fac(int n)
{ double result=1;
for(int i=2;i