C语言
编程根据公式 e=1+1/1!+1/2!+1/3!+…求 e 的近似值,精度要求为 10-6。请用循环结构编程请问这个题怎么做!!!!!! 走错场子了。
#include <stdio.h>
main(void)
{
double e ;
unsigned long long i , k ;
for(e = 1.0 , i = 1 , k = 1 ; k < 1e10 ; i ++ , k *= i) e += 1.0 / k ;
printf("e = %.10lf\n" , e) ;
}
编译、运行实况
C:\Bin>g++ -static -o x x.c
C:\Bin>x
e = 2.7182818284
C:\Bin>
页:
[1]