二分之求零點

如今給你方程 8*x^4+ 7*x^3 + 2*x^2 + 3*x + 6 == Y ,給你Y的值,請你解出這個方程x在[0,100]之內的解。 #include #include using namespace std; double calculate(double x) { return 8*x*x*x*x+7*x*x*x+2*x*x+3*x+6; } int main()
相關文章
相關標籤/搜索