Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~168 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for Rotvailera

[B]help me with this program :[/B] [code=cplusplus] #include <iostream> using namespace std; #include <math.h> double F(double x){ double res = pow(x, 9) - pow(x, 7) + 2 * pow(x, 2) -1; return res; } void print_roots(){ double low = 0, high = 1; for(int i = 0; i < 1000 …

Member Avatar for Lerner
0
67
Member Avatar for Rotvailera

Hello. First sorry for bad english. Can somebody help me with this: Using Bisection method find one real root for f(x)=x^9-x^7+2x^2-1 xE [0;1] I have to write a program in c++ witch founds me the root. Please help me. Again sorry for the bad english

Member Avatar for Rotvailera
0
101