#include <stdio.h>
#include <math.h>
void main() {
double x, t, s = 0;
int i = 0;
scanf("%lf", &x);
t = x;
while (fabs(t) >= 1e-6) {
s += t;
i++;
t = -t * x * x / (2 * i) / (2 * i + 1);
}
printf("%.2lf", s);
}
SiNx値を求めて:おおよそのSiNxに時間が1E-6未満になるまで、次の式、蓄積必要の絶対値に応じ。
おすすめ
転載: blog.csdn.net/qq_38490457/article/details/104738006
おすすめ
ランキング