用c语言,写一个s=-x/1!+x^2/2!-x^3/3!-……x^n/n!,并输入x和n的值求s。
时间: 2023-05-13 22:06:52 浏览: 90
以下是用 C 语言编写的代码:
```c
#include <stdio.h>
#include <math.h>
double factorial(int n) {
double result = 1.0;
for (int i = 1; i <= n; i++) {
result *= i;
}
return result;
}
double calculate(double x, int n) {
double s = 0.0;
for (int i = 1; i <= n; i++) {
double term = pow(-1, i + 1) * pow(x, i) / factorial(i);
s += term;
}
return s;
}
int main() {
double x;
int n;
printf("请输入 x 和 n 的值:");
scanf("%lf %d", &x, &n);
double s = calculate(x, n);
printf("s = %lf\n", s);
return 0;
}
```
如果你输入 x=1.0,n=5,程序将输出:
```
s = 0.366667
```
这是因为:
```
s = -1/1! + 1/2! - 1/3! + 1/4! - 1/5!
= -1 + 1/2 - 1/6 + 1/24 - 1/120
= 0.366667
```
希望这个答案对你有所帮助!
阅读全文