#include <stdio.h>
#include <math.h>
float f(float x) {
return x*x*x - 2*x*x + 4*x +
牛顿迭代法求根
最新推荐文章于 2023-05-16 22:58:08 发布
#include <stdio.h>
#include <math.h>
float f(float x) {
return x*x*x - 2*x*x + 4*x +