求用割线法求方程x的3次方-2x-5=0在x0=2附近的根,取x0=2,x1-=2.2,计算到4位有效数字的C语言程序

日期:2016-12-02 05:21:34 人气:1

求用割线法求方程x的3次方-2x-5=0在x0=2附近的根,取x0=2,x1-=2.2,计算到4位有效数字的C语言程序

#include #include float ff(float x) { return x*(x*x-2)-5; } float Secant(float x0,float x1) { return (x1 - (ff(x1)*(x1-x0))/(ff(x1)-ff(x0))); } void main() { int number,k=2; float x0=2,x1=2.2,x2; printf("x[
    A+
热门评论