count.c
上传用户:bjtelijie
上传日期:2010-01-01
资源大小:87k
文件大小:0k
源码类别:

数学计算

开发平台:

Visual C++

  1. # include <math.h>
  2. # include <stdio.h>    /* 数学函数库 */
  3. void main()
  4. {
  5. /* 用s表示多项式的值,用t表示每一项的值 */
  6. double s, t, x;
  7. int n;
  8. printf("please input x: ");
  9. scanf("%lf", &x);
  10.     /* 符初值 */
  11. t = x;
  12. n = 1;
  13. s = x;
  14.     /* 进行叠加运算 */
  15. do
  16. {
  17. n = n + 2 ;
  18. t = t * (-x*x)/((float)(n)-1)/(float)(n);
  19. s = s + t;
  20. } while (fabs(t)>=1e-8);
  21. printf("sin(%f) = %lfn", x, s);
  22. }