Leo Linuxhnrainll.blog.chinaunix.net
hnrainll
全部博文(354)
2010年(300)
2009年(54)
大鬼不动
叶绍琛
路沐堇
HoariNes
快乐的猪
6551130
zjt_pond
K__奕__
cynthia
格伯纳
Bsolar
葫芦娃的
分类: C/C++
2010-06-20 06:14:26
#include <stdio.h> #include <math.h> #include <stdlib.h> int main(int argc, char *argv[]) { double s, t, x; int n; printf("please input x:"); scanf("%lf", &x); t = x; n = 1; s = x; do { n = n + 2; t = t * (-x*x)/((float)(n) - 1)/(float)(n); s = s + t; } while(fabs(t) >= 1e-8); printf("sin(%f) = %lf\n", x , s); system("pause"); return 0; }
上一篇:C语言实例14:while语句
下一篇:Dev-C++ IDE 运行程序时,程序运行结束窗口自动关闭的问题
登录 注册