【牛頓迭代法】C++實現

#include <cstdio> #include <cstdlib> #include <iostream> #include <time.h> #include <math.h> using namespace std; double f(double x) { return x+exp(x)-2; } double df(double x) { return 1+exp(
相關文章
相關標籤/搜索