[求助]求e值程序
一个练习题目e=1+1/1+1/2!+1/3!…… 就当它是+到1/c!我是这样编的:
#include"stdio.h"
main()
{
int a,b,c;
float d,e;
a=1;
b=1;
scanf("%d",&c);
while(c>0&&a<=c)
{
b=a*b;
a++;
d=1/b;
e=d+d;
}
printf("e=%f",e);
}
运行结果是2.000000, 就是说小数部分没有算出来, 请大家帮我看下哪里出了问题,谢谢大家