SiNx値を求めて:おおよそのSiNxに時間が1E-6未満になるまで、次の式、蓄積必要の絶対値に応じ。

ここに画像を挿入説明

#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);
}
公開された139元の記事 ウォンの賞賛4 ビュー93万+

おすすめ

転載: blog.csdn.net/qq_38490457/article/details/104738006