C语言-用牛顿迭代法和二分法求方程
1.用牛顿迭代法求该方程在1.5附近的根:2X^3-4X^2+3X-6=0#include<stdio.h>#include<math.h>double func(double x) //函数{r