您的当前位置:首页正文

牛顿迭代法

2020-09-09 来源:好走旅游网


详细程序

#include\"stdio.h\" #include\"math.h\" float f(float x)

{ return (x*x-115); }

main()

{float e,x0,x1; int N; int k=1;

printf(\"please input x0,e,N\\n\"); scanf(\"%f,%f,%d\clrscr();

sign: if(2*x0==0)

printf(\"input x0=%f\\n\ else

x1=x0-f(x0)/(2*x0); printf(\"%f\\n\ if (fabs(x1-x0)if(k!=N) { k=k+1; x0=x1; goto sign; }

else printf(\"error\"); getch(); }

因篇幅问题不能全部显示,请点此查看更多更全内容