The program delivers all the values of the expression and the loop correctly. However the if statements do not work. What is wrong with my code and how can I fix it?
CODE:
using namespace std;
int main()
{
double x, y;
cout << "My name is Daniil Aleksandrov, and this is the output of my first program" <<endl <<endl;
cout << "X Value\t\tY Value" << endl <<endl <<endl;
for (x = -4; x<=2.0; x++){
y = (15 * x * x * x - (4 * x +54))/(sqrt(5 * x * x + 1) + 7 * fabs(x - 2.5));
if(y == 0.0) //equality - almost certain to be false
Always use the equality operator in an if statement.
But that is a problem in itself, FP (floating point - includes doubles and floats) numbers are represented as binary fractions, and cannot represent all real numbers. If you specify x as a double number what you get is x +/- a small number (about 1e-16).
For the same reason you should not do this:
for (x = -4; x<=2.0; x++){ // probably executes 8 times not 7
Always use integer values for the conditionals in loops - you can always convert them to double inside the loop.
To make meaningful comparisons with FP numbers, you need the absolute value of a the number with an arbitrary precision (0.001 say). So for comparison with zero you have:
1 2
double Precision = 0.001;
if (abs(x) < Precision) //close enough to zero for us