二分法和牛顿法求解非线性方程(c语言)
(1)二分法求解非线性方程:#include<stdio.h>#include <math.h>#define f(x) ((x*x-1)*x-1)void main(){ float a,b,x,e
二分法和牛顿法求解非线性方程(c语言)