求1!+2!+3!+...+10! 必须使用函数

/************************************************
求1!+2!+3!+…+10!
必须使用函数
**********************************************/
#include

int main(){
int re;
re = jiecheng();
printf("%d", re);
return 0;
}
int jiecheng()
{
int j, jc = 1, i = 1, res = 0;
while (i <= 10){
j = i;
jc = 1;
while(j >= 1){
jc = jc*j;
j–;
}
res = res + jc;
i++;
}
return res;
}

你可能感兴趣的:(笔记)