写一个C语言程序求e^x=1+x+x^2/2!
时间: 2023-10-22 21:03:58 浏览: 168
用C语言写的求解自然数e的算法
4星 · 用户满意度95%
以下是可以求e^x=1+x + x^2/2!的C语言程序:
#include <stdio.h>
#include <math.h>
int main()
{
float x, answer = 0, term = 1;
int i;
printf("Enter the value of x: ");
scanf("%f", &x);
for (i = 1; i <= 10; i++)
{
answer += term;
term *= (x / i);
}
printf("The value of e^%.2f = %f", x, answer);
return 0;
}
阅读全文