摘要: 牛顿迭代法求方程根 #include <stdio.h>#include <math.h> float solution(float a, float b, float c, float d){ float x0, f, fd, h; float x = 1.5; do { x0 = x; f = 阅读全文
posted @ 2023-04-19 16:57 灬倾夏 阅读(13) 评论(0) 推荐(0)