编写一个函数,计算s=1+1/2!+1/3!+·······1/N!

问题描述:

编写一个函数,计算s=1+1/2!+1/3!+·······1/N!

#include
double fun(int i)
{
int j;
double sum=1;
for(j=1;j